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.
website/appunti/appunti.go

18 lines
257 B
Go

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