client md test

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

View File

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