package v1 import ( "gitea.badhouseplants.net/softplayer/softplayer-backend/internal/controllers" accounts "gitea.badhouseplants.net/softplayer/softplayer-go-proto/pkg/accounts/v1" ) func NewAccountAuthRPCImpl(ctrl *controllers.AccountController) *AccountsAuthServer { return &AccountsAuthServer{ ctrl: ctrl, } } type AccountsAuthServer struct { accounts.UnimplementedAccountsAuthServiceServer ctrl *controllers.AccountController }