2023-10-27 23:58:02 +07:00

15 lines
178 B
Go

package cli
import (
"go.uber.org/fx"
"go.uber.org/zap"
)
type Params struct {
fx.In
Logger *zap.Logger
Commands []Command `group:"commands"`
Shut fx.Shutdowner
}