Skip to content
This repository has been archived by the owner on Nov 18, 2021. It is now read-only.

Commit

Permalink
Added generate and config commands
Browse files Browse the repository at this point in the history
  • Loading branch information
pksunkara committed Apr 30, 2016
1 parent 290c939 commit 4645e1a
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 0 deletions.
5 changes: 5 additions & 0 deletions config.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package main

type ConfigCommand struct {
ConfigAdd ConfigAddCommand `command:"add" alias:"a" description:"Add a new variable"`
}
4 changes: 4 additions & 0 deletions config_add.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package main

type ConfigAddCommand struct {
}
5 changes: 5 additions & 0 deletions generate.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package main

type GenerateCommand struct {
GenerateReadme GenerateReadmeCommand `command:"readme" alias:"r" description:"Append some standard stuff to README.md"`
}
4 changes: 4 additions & 0 deletions generate_readme.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package main

type GenerateReadmeCommand struct {
}

0 comments on commit 4645e1a

Please sign in to comment.