about summary refs log tree commit diff
path: root/pkg/resources/resources.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/resources/resources.go')
-rw-r--r--pkg/resources/resources.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkg/resources/resources.go b/pkg/resources/resources.go
new file mode 100644
index 0000000..8c2eed5
--- /dev/null
+++ b/pkg/resources/resources.go
@@ -0,0 +1,12 @@
+package resources
+
+import (
+	"github.com/docker/go-p9p"
+	"k8s.io/client-go/informers"
+)
+
+type Session interface {
+	p9p.Session
+	GetAuth() (uname, aname string)
+	Informer() informers.SharedInformerFactory
+}