17 lines
210 B
Go
17 lines
210 B
Go
package app
|
|
|
|
import (
|
|
ac_context "ac/internal/context"
|
|
"ac/pkg/factory"
|
|
)
|
|
|
|
type App interface {
|
|
SetLogLevel(level string)
|
|
|
|
Start()
|
|
Terminate()
|
|
|
|
Context() *ac_context.ACContext
|
|
Config() *factory.Config
|
|
}
|