Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/config/auth/auth.go')
-rw-r--r--internal/config/auth/auth.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/internal/config/auth/auth.go b/internal/config/auth/auth.go
new file mode 100644
index 000000000..1bf8de921
--- /dev/null
+++ b/internal/config/auth/auth.go
@@ -0,0 +1,7 @@
+package auth
+
+// Config is a struct for an authentication config
+type Config struct {
+ Transitioning bool `toml:"transitioning"`
+ Token string `toml:"token"`
+}