15 lines
167 B
Go
Raw Normal View History

package staffhttp
import "go.uber.org/fx"
var Module = fx.Module("auth-api",
fx.Invoke(
Login,
Register,
Update,
GetProfile,
GetUsers,
2025-03-25 18:01:14 +08:00
GetStaffs,
),
)