12 lines
159 B
Go
12 lines
159 B
Go
package scopes
|
|
|
|
import "git.sr.ht/~cco/go-scopes/config"
|
|
|
|
type Cfg struct {
|
|
*config.BaseConfig
|
|
AppType string
|
|
}
|
|
|
|
func RunApp(cfg config.Config) {
|
|
_ = cfg
|
|
}
|