mirror of
https://github.com/m5stack/StackChan.git
synced 2026-04-27 19:12:40 +00:00
19 lines
307 B
Go
19 lines
307 B
Go
/*
|
|
SPDX-FileCopyrightText: 2026 M5Stack Technology CO LTD
|
|
SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"stackChan/internal/cmd"
|
|
_ "stackChan/internal/packed"
|
|
|
|
_ "github.com/gogf/gf/contrib/drivers/sqlite/v2"
|
|
"github.com/gogf/gf/v2/os/gctx"
|
|
)
|
|
|
|
func main() {
|
|
cmd.Main.Run(gctx.GetInitCtx())
|
|
}
|