summaryrefslogtreecommitdiff
path: root/internal/export_tags.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-01-26 00:07:39 -0700
committerLuke Shumaker <lukeshu@lukeshu.com>2023-01-26 00:08:56 -0700
commit4148776399cb7ea5e10c74dc465e4e1e682cb399 (patch)
treedaf8a3aa6521d3d56aa986f10c3d23ea1b016f4b /internal/export_tags.go
parente483afa206686ce748ad270140f99fad9d713aad (diff)
Move the Parser to the internal package
Diffstat (limited to 'internal/export_tags.go')
-rw-r--r--internal/export_tags.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/internal/export_tags.go b/internal/export_tags.go
new file mode 100644
index 0000000..d8cf622
--- /dev/null
+++ b/internal/export_tags.go
@@ -0,0 +1,16 @@
+// Copyright (C) 2022 Luke Shumaker <lukeshu@lukeshu.com>
+//
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+package internal
+
+import (
+ "io"
+)
+
+var ParseTag = parseTag
+
+var (
+ EncodeStringFromBytes func(io.Writer, []byte)
+ EncodeStringFromString func(io.Writer, string)
+)