lockserver/httpserver/lock.go
Finn 22cafb347b
All checks were successful
/ build-container (push) Successful in 6m42s
Remove no-longer-needed REST endpoints
2024-04-24 00:15:12 -07:00

11 lines
164 B
Go

package httpserver
import (
"errors"
echo "github.com/labstack/echo/v4"
)
func lockHandler(c echo.Context) error {
return errors.New("not yet implemented")
}