2024-10-10 13:44:17 -04:00
|
|
|
package handlers
|
2024-10-07 20:35:40 -04:00
|
|
|
|
|
|
|
|
import "github.com/labstack/echo/v4"
|
|
|
|
|
|
2024-10-15 14:31:19 -04:00
|
|
|
// ╭───────────────────────────────────────────────────────────╮
|
|
|
|
|
// │ Dexie Database Handlers │
|
|
|
|
|
// ╰───────────────────────────────────────────────────────────╯
|
|
|
|
|
|
|
|
|
|
func (a *syncAPI) FetchInitial(e echo.Context) error {
|
2024-10-07 20:35:40 -04:00
|
|
|
// Implement database schema endpoint
|
|
|
|
|
return nil
|
|
|
|
|
}
|
2024-10-15 14:31:19 -04:00
|
|
|
|
|
|
|
|
func (a *syncAPI) FetchCurrent(e echo.Context) error {
|
|
|
|
|
// Implement account entries endpoint
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ╭───────────────────────────────────────────────────────────╮
|
|
|
|
|
// │ Group Structures │
|
|
|
|
|
// ╰───────────────────────────────────────────────────────────╯
|
|
|
|
|
|
|
|
|
|
type syncAPI struct{}
|
|
|
|
|
|
|
|
|
|
var Sync = new(syncAPI)
|