Super basic NIP file parser

This commit is contained in:
Héctor Giménez
2023-03-11 19:41:51 +09:00
parent 2414f0a727
commit d71894a044
5 changed files with 361 additions and 0 deletions

11
go.mod Normal file
View File

@@ -0,0 +1,11 @@
module github.com/hectorgimenez/d2go
go 1.19
require github.com/stretchr/testify v1.8.2
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)