client dashboard

This commit is contained in:
Sas Andy
2024-05-10 09:32:36 +07:00
parent f6d177f2f1
commit ff0f95a67f
5 changed files with 214 additions and 0 deletions

View File

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