2024-12-02 14:27:18 -05:00
|
|
|
//go:build js && wasm
|
|
|
|
|
// +build js,wasm
|
|
|
|
|
|
2024-12-05 20:36:58 -05:00
|
|
|
// Package vault provides the routes for the Decentralized Web Node (...or Sonr Motr).
|
2024-12-02 14:27:18 -05:00
|
|
|
package vault
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/labstack/echo/v4"
|
|
|
|
|
|
2024-12-16 15:29:54 -05:00
|
|
|
"github.com/onsonr/sonr/internal/config/motr"
|
2024-12-02 14:27:18 -05:00
|
|
|
)
|
|
|
|
|
|
2024-12-05 20:36:58 -05:00
|
|
|
// RegisterRoutes registers the Decentralized Web Node API routes.
|
2024-12-11 12:26:48 -05:00
|
|
|
func RegisterRoutes(e *echo.Echo, config *motr.Config) {
|
2024-12-02 14:27:18 -05:00
|
|
|
}
|