mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 09:51:39 +00:00
9 lines
154 B
Go
9 lines
154 B
Go
package worker
|
|
|
|
import "github.com/labstack/echo/v4"
|
|
|
|
func GetDatabaseSchema(e echo.Context) error {
|
|
// Implement database schema endpoint
|
|
return nil
|
|
}
|