Remove unnecessary argument

This commit is contained in:
ekzyis 2024-07-21 19:49:38 -05:00
parent 9b8734f5a9
commit 139bb2e5b1
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ func HandleLnAuthCallback(sc context.Context) echo.HandlerFunc {
}
func NostrAuth(sc context.Context, c echo.Context, action string) error {
return echo.NewHTTPError(http.StatusNotImplemented, nil)
return echo.NewHTTPError(http.StatusNotImplemented)
}
func HandleSessionCheck(sc context.Context) echo.HandlerFunc {