-
-
Notifications
You must be signed in to change notification settings - Fork 179
/
main.go
42 lines (33 loc) · 1004 Bytes
/
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
// Main package for the GraphJin service and command line tooling
/*
GraphJin
For documentation, visit https://graphjin.com
Commit SHA-1 : 00c26ba
Commit timestamp : 2021-10-01 20:30:47 -0700
Go version : go1.16
Licensed under the Apache Public License 2.0
Copyright 2019 Vikram Rangnekar
Usage:
graphjin [command]
Available Commands:
completion generate the autocompletion script for the specified shell
db Create database
deploy Deploy a new config
help Help about any command
init Setup admin database
migrate Migrate the database
new Create a new application
serv Run the GraphJin service
version Version information
Flags:
-h, --help help for graphjin
--path string path to config files (default "./config")
Use "graphjin [command] --help" for more information about a command.
*/
package main
import (
"github.com/dosco/graphjin/internal/cmd"
)
func main() {
cmd.Cmd()
}