init: initial repo

This commit is contained in:
ericprd
2025-02-22 12:50:26 +08:00
commit e57fa3ac6c
8 changed files with 146 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
package main
func main() {
}
+22
View File
@@ -0,0 +1,22 @@
package main
import (
"context"
"log"
"go.uber.org/fx"
)
func main() {
ctx := context.Background()
app, err := fx.New()
if err != nil {
log.Fatal(err)
}
if err := app.Run(ctx); err != nil {
log.Fatal(err)
}
}