-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
list: add basic list command (no API queries included yet)
- Loading branch information
Showing
3 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
func init() { | ||
listCommand.AddCommand(listProjectsCommand) | ||
rootCmd.AddCommand(listCommand) | ||
} | ||
|
||
var listCommand = &cobra.Command{ | ||
Use: "list", | ||
Short: "list entries, projects and roles", | ||
Run: func(cmd *cobra.Command, args []string) { | ||
// TODO: list entries for last 7 days by default | ||
}, | ||
} | ||
|
||
var listProjectsCommand = &cobra.Command{ | ||
Use: "projects", | ||
Short: "list projects", | ||
Run: func(cmd *cobra.Command, args []string) { | ||
url := configGetApiUrl() | ||
key := configGetApiKey() | ||
// do get request | ||
fmt.Println(url, key) | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters