summaryrefslogtreecommitdiff
path: root/pkg/auth/creds/creds.go
diff options
context:
space:
mode:
authorkali kaneko (leap communications) <kali@leap.se>2020-01-30 19:08:14 -0600
committerkali kaneko (leap communications) <kali@leap.se>2020-01-30 19:16:19 -0600
commit819adbbb708076bcf9d3ee6443c704303aad5a80 (patch)
tree53081f249aade5edc17f6a9a72f449414d881fdd /pkg/auth/creds/creds.go
parent6ba23c4e3de16181857d5703198d2e817928f1ba (diff)
refactor auth middleware
Diffstat (limited to 'pkg/auth/creds/creds.go')
-rw-r--r--pkg/auth/creds/creds.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkg/auth/creds/creds.go b/pkg/auth/creds/creds.go
new file mode 100644
index 0000000..65b3017
--- /dev/null
+++ b/pkg/auth/creds/creds.go
@@ -0,0 +1,21 @@
+// Copyright (C) 2019 LEAP
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+package creds
+
+type Credentials struct {
+ User string
+ Password string
+}