go-web/framework/contract/app.go

16 lines
277 B
Go
Raw Normal View History

2024-09-30 11:42:37 +00:00
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
}