Initial commit: Import from /home/simon/test/ac

This commit is contained in:
zhangsz
2025-11-05 13:16:01 +08:00
commit b1dc1e18e7
28 changed files with 3471 additions and 0 deletions

16
src/pkg/app/app.go Normal file
View File

@@ -0,0 +1,16 @@
package app
import (
ac_context "ac/internal/context"
"ac/pkg/factory"
)
type App interface {
SetLogLevel(level string)
Start()
Terminate()
Context() *ac_context.ACContext
Config() *factory.Config
}