-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
start working on the repository code generator so i dont need to writ…
…e the hole thing by hand
- Loading branch information
1 parent
4fc883d
commit 0e4d5a7
Showing
3 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
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,16 @@ | ||
package main | ||
|
||
import ( | ||
"flag" | ||
"fmt" | ||
) | ||
|
||
func main() { | ||
str := flag.String("entry", "", "name of the entry to generate the repo for") | ||
|
||
//end of all flags | ||
flag.Parse() | ||
|
||
//TODO interpretate flags and generate corresponding code | ||
fmt.Printf("hello %v\n", *str) | ||
} |
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