9 lines
183 B
Go
9 lines
183 B
Go
package domain
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"gitea.qpismont.fr/qpismont/trepa/internal/core"
|
|
)
|
|
|
|
var ErrVariableNotFound = core.NewHTTPError(http.StatusNotFound, "variable not found", nil)
|