10 lines
186 B
Go
Raw Normal View History

2025-02-24 16:48:20 +08:00
package subscribesvc
func (s *impl) Create(subsPlanId string) (string, error) {
2025-02-24 16:48:20 +08:00
subsId, err := s.subsRepo.Create(subsPlanId)
if err != nil {
return "", err
}
return subsId, nil
}