go-web/framework/contract/app.go
2024-09-30 13:42:37 +02:00

16 lines
277 B
Go

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
}