test git hook

This commit is contained in:
array-in-a-matrix 2024-07-11 19:42:59 -04:00
parent 759bb75328
commit ba856038e2

View file

@ -8,7 +8,6 @@ type File* = ref object of Model
name*: string name*: string
tags*: string #? This is a temporary hack should be `seq[string]` or `JsonNode` instead tags*: string #? This is a temporary hack should be `seq[string]` or `JsonNode` instead
# creates a new file object and sets default values, recommended by the norm documentation # creates a new file object and sets default values, recommended by the norm documentation
func newFile*(user: User = newUser(), path: string = "", name: string = "", func newFile*(user: User = newUser(), path: string = "", name: string = "", tags: string = ""): File =
tags: string = ""): File =
File(owner: user, path: path, name: name, tags: tags) File(owner: user, path: path, name: name, tags: tags)