16 lines
208 B
Go
Raw Normal View History

package authhttp
import "go.uber.org/fx"
var Module = fx.Module("auth-api",
fx.Invoke(
LoginStaff,
2025-02-24 16:48:20 +08:00
LoginUser,
RegisterUser,
RegisterStaff,
2025-02-27 18:59:58 +08:00
UpdateStaff,
GetStaffProfile,
GetUserProfile,
),
)