mirror of
https://github.com/Damillora/Yuriko.git
synced 2024-11-22 09:37:31 +00:00
10 lines
128 B
Go
10 lines
128 B
Go
|
package main
|
||
|
|
||
|
import "github.com/Damillora/Yuriko/pkg/app"
|
||
|
|
||
|
func main() {
|
||
|
app := app.App{}
|
||
|
app.Initialize()
|
||
|
app.StartApp()
|
||
|
}
|