- Migrate all log.Printf/log.Println calls to structured zap logging - Use cmp.Or for cleaner default value handling - Replace manual loops with slices.ContainsFunc/IndexFunc - Add batch query methods (IsLikedBatch, IsFavoritedBatch) to solve N+1 problem - Update JSON tags from omitempty to omitzero for numeric fields - Use errgroup-style wg.Go for worker goroutines - Remove duplicate casbin/v2 dependency (keeping v3) - Add plans/ to gitignore
44 lines
767 B
Go
44 lines
767 B
Go
package main
|
||
|
||
import (
|
||
"context"
|
||
"os"
|
||
"os/signal"
|
||
"syscall"
|
||
"time"
|
||
|
||
"go.uber.org/zap"
|
||
)
|
||
|
||
func main() {
|
||
// 初始化应用程序(Wire 自动生成)
|
||
app, err := InitializeApp()
|
||
if err != nil {
|
||
zap.L().Fatal("failed to initialize app",
|
||
zap.Error(err),
|
||
)
|
||
}
|
||
|
||
// 启动应用程序
|
||
ctx := context.Background()
|
||
if err := app.Start(ctx); err != nil {
|
||
app.Logger.Fatal("failed to start app",
|
||
zap.Error(err),
|
||
)
|
||
}
|
||
|
||
// 优雅关闭
|
||
quit := make(chan os.Signal, 1)
|
||
signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
|
||
<-quit
|
||
|
||
shutdownCtx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
|
||
defer cancel()
|
||
|
||
if err := app.Stop(shutdownCtx); err != nil {
|
||
app.Logger.Error("Error during shutdown",
|
||
zap.Error(err),
|
||
)
|
||
}
|
||
}
|