main.go 191 B

1234567891011
  1. package main
  2. import (
  3. "ElectronicInvoice/internal/cmd"
  4. _ "github.com/gogf/gf/contrib/drivers/mysql/v2"
  5. "github.com/gogf/gf/v2/os/gctx"
  6. )
  7. func main() {
  8. cmd.Main.Run(gctx.GetInitCtx())
  9. }