first commit

This commit is contained in:
Peter Kleiweg
2026-03-02 15:34:37 +01:00
commit 36f051a8a9
50 changed files with 4241 additions and 0 deletions

13
NOS/Makefile Normal file
View File

@@ -0,0 +1,13 @@
all: \
json2txt \
metadata \
nos
json2txt: cmd/json2txt/*.go
go build -o $@ $^
metadata: cmd/metadata/*.go
go build -o $@ $^
nos: cmd/nos/*.go
go build -o $@ $^