This commit is contained in:
Sas Andy
2024-05-10 08:53:32 +07:00
parent 88d9985ca1
commit f673933c4c
7 changed files with 691 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package public_services
import "cpone/db"
type ServicesLogin struct {
CompanyStore db.AppStore
}
func NewServicesLogin(uStore db.AppStore) *ServicesLogin {
return &ServicesLogin{
CompanyStore: uStore,
}
}