-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconnector.go
44 lines (33 loc) · 879 Bytes
/
connector.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
package gear5
import (
"fmt"
"os"
"github.com/gear5sh/gear5/logger"
protocol "github.com/gear5sh/gear5/protocol"
"github.com/gear5sh/gear5/safego"
"github.com/spf13/cobra"
)
var (
globalDriver protocol.Driver
globalAdapter protocol.Adapter
)
func RegisterDriver(driver protocol.Driver) {
defer safego.Recovery(true)
if globalAdapter != nil {
logger.Fatal(fmt.Errorf("adapter already registered: %s", globalAdapter.Type()))
}
globalDriver = driver
// Execute the root command
err := protocol.CreateRootCommand(true, driver).Execute()
if err != nil {
logger.Fatal(err)
}
os.Exit(0)
}
func RegisterAdapter(adapter protocol.Adapter) (*cobra.Command, error) {
if globalDriver != nil {
return nil, fmt.Errorf("driver alraedy registered: %s", globalDriver.Type())
}
globalAdapter = adapter
return protocol.CreateRootCommand(false, adapter), nil
}