feat: CR login, register, subscribe

This commit is contained in:
ericprd
2025-02-24 16:48:20 +08:00
parent ae5b2cb975
commit cb3d06fa02
48 changed files with 1027 additions and 59 deletions
+9
View File
@@ -0,0 +1,9 @@
package subscribesvc
func (s *SubsSvc) Create(subsPlanId string) (string, error) {
subsId, err := s.subsRepo.Create(subsPlanId)
if err != nil {
return "", err
}
return subsId, nil
}
+15
View File
@@ -0,0 +1,15 @@
package subscribesvc
import subscriberepository "github.com/ardeman/project-legalgo-go/internal/accessor/subscribe"
type SubsSvc struct {
subsRepo subscriberepository.SubsIntf
}
type SubsIntf interface {
Create(string) (string, error)
}
func New(subsRepo subscriberepository.SubsIntf) SubsIntf {
return &SubsSvc{subsRepo}
}