go-scopes/scopes.go

20 lines
245 B
Go

package scopes
import (
"git.sr.ht/~cco/go-scopes/common"
"git.sr.ht/~cco/go-scopes/config"
)
type Cfg struct {
*config.Base
AppType string
}
func Start(ctx common.Context) {
}
// definitions
func RunApp(cfg config.Config) {
_ = cfg
}