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) { }