7 lines
163 B
Go
7 lines
163 B
Go
package domain
|
|
|
|
import "gitea.qpismont.fr/qpismont/trepa/internal/core"
|
|
|
|
type VariableService interface {
|
|
GetVariable(name string) (*Variable, *core.HTTPError)
|
|
}
|