Files
sonr/pkg/hway/handlers/sync.go
T

14 lines
247 B
Go
Raw Normal View History

package handlers
import "github.com/labstack/echo/v4"
func FetchInitial(e echo.Context) error {
// Implement database schema endpoint
return nil
}
func FetchCurrent(e echo.Context) error {
// Implement account entries endpoint
return nil
}