You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
257 B
Go
18 lines
257 B
Go
2 years ago
|
package appunti
|
||
|
|
||
|
import (
|
||
|
"git.phc.dm.unipi.it/phc/website/database"
|
||
|
)
|
||
|
|
||
|
type Service interface {
|
||
|
ViewDispense() error
|
||
|
}
|
||
|
|
||
|
type DefaultService struct {
|
||
|
DB database.DB
|
||
|
}
|
||
|
|
||
|
func (s *DefaultService) CreateDispensa(user string, template database.Dispensa) {
|
||
|
|
||
|
}
|