github.com/benchkram/bob@v0.0.0-20240314204020-b7a57f2f9be9/pkg/auth/context.go (about) 1 package auth 2 3 type Context struct { 4 // Name is the name of the context. 5 Name string 6 7 // Token identifies the user. 8 Token string 9 10 // Current is set to true if this should be the currently active context. 11 Current bool 12 }