-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
80 lines (67 loc) · 1.66 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package main
import (
"fmt"
"log"
"os"
"github.com/mitchellh/cli"
"github.com/mitchellh/go-homedir"
"github.com/spf13/viper"
)
const (
confFile = ".remo-numpad"
version = "0.0.1"
)
type KeyConfig struct {
Appliance string `mapstructure:"appliance"`
Signal string `mapstructure:"signal"`
}
type Config struct {
Token string `mapstructure:"token"`
Keys map[string]KeyConfig `mapstructure:"keys"`
Plus KeyConfig `mapstructure:"plus"`
Slash KeyConfig `mapstructure:"slash"`
Asterisk KeyConfig `mapstructure:"asterisk"`
Hyphen KeyConfig `mapstructure:"hyphen"`
Esc KeyConfig `mapstructure:"esc"`
Dot KeyConfig `mapstructure:"dot"`
}
func newKeys() *Config {
var myConfig Config
if err := viper.Unmarshal(&myConfig); err != nil {
fmt.Println("Unable to decode into struct,", err)
}
return &myConfig
}
func init() {
home, err := homedir.Dir()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
viper.AddConfigPath(home)
viper.SetConfigName(confFile)
if err := viper.ReadInConfig(); err == nil {
fmt.Println("Using config file: ", viper.ConfigFileUsed())
}
var myConfig Config
if err := viper.Unmarshal(&myConfig); err != nil {
fmt.Println("Unable to decode into struct,", err)
}
}
func main() {
c := cli.NewCLI("remo-numpad", version)
c.Args = os.Args[1:]
c.Commands = map[string]cli.CommandFactory{
"server": func() (cli.Command, error) {
return &serverCommand{}, nil
},
"scan": func() (cli.Command, error) {
return &scanCommand{}, nil
},
}
exitStatus, err := c.Run()
if err != nil {
log.Println(err)
}
os.Exit(exitStatus)
}