-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
target markets API for markets commands.
- Loading branch information
Showing
7 changed files
with
101 additions
and
37 deletions.
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
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
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 ( | ||
"github.com/urfave/cli/v2" | ||
) | ||
|
||
var dagstoreCmd = &cli.Command{ | ||
Name: "dagstore", | ||
Usage: "Manage the DAG store", | ||
Subcommands: []*cli.Command{ | ||
dagstoreListShardsCmd, | ||
dagstoreGarbageCollectCmd, | ||
}, | ||
} | ||
|
||
var dagstoreListShardsCmd = &cli.Command{ | ||
Name: "list-shards", | ||
Usage: "List shards known to the DAG store", | ||
Action: func(cctx *cli.Context) error { | ||
return nil | ||
}, | ||
} | ||
|
||
var dagstoreGarbageCollectCmd = &cli.Command{ | ||
Name: "gc", | ||
Usage: "Garbage collect the DAG store", | ||
Action: func(cctx *cli.Context) error { | ||
return nil | ||
}, | ||
} |
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
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