phoebe/main.go

11 lines
112 B
Go
Raw Normal View History

2021-05-09 22:07:23 +07:00
package main
import (
2025-02-24 13:50:43 +00:00
"github.com/Damillora/phoebe/pkg/app"
2021-05-09 22:07:23 +07:00
)
func main() {
app.Initialize()
app.Start()
}