Repo: reorganize the repo structure

This commit is contained in:
Muyao CHEN
2024-09-30 13:42:37 +02:00
parent c3fc59b8f1
commit 17b19e3a10
14 changed files with 203 additions and 58 deletions

15
framework/contract/app.go Normal file
View File

@ -0,0 +1,15 @@
package contract
const AppName = "goweb:app"
type App interface {
Version() string
BaseFolder() string
ConfigFolder() string
LogFolder() string
ProvidersFolder() string
MiddlewaresFolder() string
CommandsFolder() string
RuntimeFolder() string
TestsFolder() string
}