diff options
author | Michael Muré <batolettre@gmail.com> | 2022-08-24 21:29:17 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2022-08-24 21:31:48 +0200 |
commit | e1b172aaf0e984791b5af4a64b144339fd4042f6 (patch) | |
tree | 1306f7f617968e13e6f28eda51417ae8cd2c6c6a /entities/bug/bug.go | |
parent | ccb71fea57bb17f267f135cb008470615595c5b7 (diff) | |
download | git-bug-e1b172aaf0e984791b5af4a64b144339fd4042f6.tar.gz |
dag: test op serialisation with the unmarshaller, to allow resolving entities
Diffstat (limited to 'entities/bug/bug.go')
-rw-r--r-- | entities/bug/bug.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/entities/bug/bug.go b/entities/bug/bug.go index 4ce10c5b..1140c543 100644 --- a/entities/bug/bug.go +++ b/entities/bug/bug.go @@ -23,7 +23,7 @@ const formatVersion = 4 var def = dag.Definition{ Typename: "bug", Namespace: "bugs", - OperationUnmarshaler: operationUnmarshaller, + OperationUnmarshaler: operationUnmarshaler, FormatVersion: formatVersion, } |