refactor: move Pkl module definitions to dedicated package

This commit is contained in:
Prad Nukala
2024-10-07 20:35:40 -04:00
parent ddf745f39a
commit e926e5b9d6
18 changed files with 59 additions and 50 deletions
+8
View File
@@ -0,0 +1,8 @@
package worker
import "github.com/labstack/echo/v4"
func GetDatabaseSchema(e echo.Context) error {
// Implement database schema endpoint
return nil
}