Version control system wrapper allowing the developer to worry about only having to learn one command set to manage all types of repositories. Derivative of the Python project http://code.revolvingcow.com/RevolvingCow/pycode

code.go 223B

12345678910111213141516171819
  1. package main
  2. import (
  3. "log"
  4. "os"
  5. "code.revolvingcow.com/revolvingcow/go-code/cmd"
  6. )
  7. // Main entry point to the application
  8. func main() {
  9. err := cmd.NewApp().Run()
  10. if err != nil {
  11. log.Fatal(err)
  12. os.Exit(1)
  13. }
  14. }