Browse Source

remove login info, that should be managed external

main
David Haukeness 2 years ago
parent
commit
6a35233453
  1. 2
      keybase.go
  2. 2
      keybase_test.go

2
keybase.go

@ -15,8 +15,6 @@ import ( @@ -15,8 +15,6 @@ import (
type Options struct {
KeybaseLoction string // Optional, but required if keybase is not in your path
HomeDir string // Only use this if you know what you're doing
Username string // Your keybase username
PaperKey string // Your keybase paperkey
EnableTyping bool // Show others a typing notification while the bot is working on a command
BotLiteMode bool // Defaults to true - only disable if you need to.
}

2
keybase_test.go

@ -10,8 +10,6 @@ func TestNewOptions(t *testing.T) { @@ -10,8 +10,6 @@ func TestNewOptions(t *testing.T) {
want := &Options{
KeybaseLoction: "",
HomeDir: "",
Username: "",
PaperKey: "",
EnableTyping: false,
BotLiteMode: true,
}

Loading…
Cancel
Save