12 lines
129 B
Go
12 lines
129 B
Go
|
package tenant
|
||
|
|
||
|
type Service struct {
|
||
|
store *Store
|
||
|
}
|
||
|
|
||
|
func NewService(st *Store) *Service {
|
||
|
return &Service{
|
||
|
store: st,
|
||
|
}
|
||
|
}
|