First working version

This commit is contained in:
Eden Kirin
2025-10-31 14:36:41 +01:00
parent f8edfc0fc1
commit f9f67b6c93
22 changed files with 2277 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package generator
// GenerateInit generates an empty __init__.py file
func GenerateInit(ctx *Context) (string, error) {
// Empty __init__.py file
return "", nil
}