chore: stabilize lint and verify builds

This commit is contained in:
2026-02-06 11:51:32 +08:00
parent edede17880
commit 1782f64417
114 changed files with 3032 additions and 1345 deletions

View File

@@ -15,6 +15,7 @@ var (
Creator *creator
Notification *notification
Order *order
Recharge *recharge
Super *super
Tenant *tenant
User *user
@@ -32,6 +33,7 @@ type services struct {
creator *creator
notification *notification
order *order
recharge *recharge
super *super
tenant *tenant
user *user
@@ -49,6 +51,7 @@ func (svc *services) Prepare() error {
Creator = svc.creator
Notification = svc.notification
Order = svc.order
Recharge = svc.recharge
Super = svc.super
Tenant = svc.tenant
User = svc.user