summaryrefslogtreecommitdiff
path: root/pkg/oidc/raw_token.go
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-04-25 21:28:33 -0600
committermo khan <mo@mokhan.ca>2025-04-28 09:07:31 -0600
commit8a3ec933d5f8c867e2826c30c0c87a2f89fd73fc (patch)
tree51f7165ee75bf25d094da782f2188f350b8252fb /pkg/oidc/raw_token.go
parent9b01d1616e130a589151bf1273e41181ecc727f4 (diff)
refactor: move types to separate files
Diffstat (limited to 'pkg/oidc/raw_token.go')
-rw-r--r--pkg/oidc/raw_token.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkg/oidc/raw_token.go b/pkg/oidc/raw_token.go
new file mode 100644
index 0000000..08bd1e5
--- /dev/null
+++ b/pkg/oidc/raw_token.go
@@ -0,0 +1,7 @@
+package oidc
+
+type RawToken string
+
+func (r RawToken) String() string {
+ return string(r)
+}