client md user group

This commit is contained in:
Sas Andy
2024-05-10 10:06:05 +07:00
parent 0bc1cb2a49
commit f2a84daea0
5 changed files with 214 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package client_services
import "cpone/db"
type ServicesMdUserGroup struct {
MdUserGroupStore db.AppStore
}
func NewServicesMdUserGroup(uStore db.AppStore) *ServicesMdUserGroup {
return &ServicesMdUserGroup{
MdUserGroupStore: uStore,
}
}