NIP parser v2 (#17)

This commit is contained in:
Héctor Giménez
2024-05-05 12:15:08 +09:00
committed by GitHub
parent 0d5c108721
commit bb0ec2555d
28 changed files with 56618 additions and 1385 deletions

8
pkg/nip/errors.go Normal file
View File

@@ -0,0 +1,8 @@
package nip
import "errors"
var (
// ErrEmptyRule is returned when a rule is empty
ErrEmptyRule = errors.New("empty rule")
)