10 lines
110 B
Go
Raw Normal View History

package authhttp
import "go.uber.org/fx"
var Module = fx.Module("auth-api",
fx.Invoke(
LoginStaff,
),
)