mirror of
https://github.com/cf-sonr/motr.git
synced 2026-01-12 02:59:13 +00:00
* feat: enhance modularity by relocating core packages * refactor: move chart components to dashboard package * refactor: restructure database access layer * refactor: rename credential descriptor to credentials for clarity * feat: enhance development environment configuration for database interactions * feat: integrate go-task for database migrations * feat: introduce middleware for market data and WebAuthn
12 lines
240 B
Go
12 lines
240 B
Go
package handlers
|
|
|
|
import (
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/sonr-io/motr/internal/ui/home"
|
|
"github.com/sonr-io/motr/middleware/render"
|
|
)
|
|
|
|
func HandleItemNotFound(c echo.Context) error {
|
|
return render.View(c, home.HomeView())
|
|
}
|