This commit is contained in:
Erik Winter 2025-02-28 13:07:29 +01:00
parent 23dc5c05a5
commit f5c1ac68e5
3 changed files with 4 additions and 4 deletions

View File

@ -4,13 +4,13 @@ import (
"fmt" "fmt"
"os" "os"
"go-mod.ewintr.nl/henk/structure" "go-mod.ewintr.nl/henk/parse"
) )
func main() { func main() {
filePath := "." // Replace with your Go file path filePath := "." // Replace with your Go file path
project, err := structure.NewProject(filePath) project, err := parse.NewProject(filePath)
if err != nil { if err != nil {
fmt.Println(err) fmt.Println(err)
os.Exit(1) os.Exit(1)

View File

@ -1,4 +1,4 @@
package structure package parse
import ( import (
"bytes" "bytes"

View File

@ -1,4 +1,4 @@
package structure package parse
import ( import (
"fmt" "fmt"