Initial rendering of the node tree

This commit is contained in:
Magnus Åhall 2025-07-02 18:02:09 +02:00
commit c5bec0afa6
7477 changed files with 8513 additions and 0 deletions

17
go.mod Normal file
View file

@ -0,0 +1,17 @@
module datagraph
go 1.24.2
require (
git.ahall.se/go/html_template v0.1.0
git.gibonuddevalla.se/go/dbschema v1.6.59
github.com/go-yaml/yaml v2.1.0+incompatible
github.com/jmoiron/sqlx v1.4.0
github.com/lib/pq v1.10.9
)
require (
git.gibonuddevalla.se/go/wrappederror v0.3.5 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)