-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
80 lines (75 loc) · 1.57 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 (
"context"
"log"
"os"
"github.com/openworklabs/streams-cli/v2/cmds/org"
"github.com/openworklabs/streams-cli/v2/cmds/stream"
"github.com/openworklabs/streams-cli/v2/utils"
"github.com/textileio/go-threads/api/client"
"github.com/urfave/cli/v2"
"google.golang.org/grpc"
)
func main() {
tclient, err := client.NewClient("0.0.0.0:6006", grpc.WithInsecure())
utils.CheckErr(err)
defer tclient.Close()
utils.CreateStreamsMetaThread(tclient)
app := &cli.App{
Commands: []*cli.Command{
{
Name: "org",
Subcommands: []*cli.Command{
{
Name: "create",
Action: func(c *cli.Context) error {
return org.Create(c, tclient)
},
ArgsUsage: "<email>",
},
{
Name: "get",
Action: func(c *cli.Context) error {
return org.Get(c, tclient)
},
ArgsUsage: "<name>",
},
},
},
{
Name: "stream",
Subcommands: []*cli.Command{
{
Name: "create",
Action: func(c *cli.Context) error {
return stream.Create(c, tclient)
},
ArgsUsage: "<stream-name> <owner-name> <owner-type>",
},
{
Name: "get",
Action: func(c *cli.Context) error {
return org.Get(c, tclient)
},
ArgsUsage: "<name>",
},
},
},
{
Name: "reset",
Action: func(c *cli.Context) error {
id := utils.GetMetaThread()
err := tclient.DeleteDB(context.Background(), id)
if err != nil {
return err
}
return nil
},
},
},
}
apperr := app.Run(os.Args)
if apperr != nil {
log.Fatal(apperr)
}
}