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 243B

123456789101112131415161718
  1. package main
  2. import (
  3. "log"
  4. "code.revolvingcow.com/revolvingcow/code/cmd"
  5. )
  6. // Main entry point to the application
  7. func main() {
  8. err := cmd.NewApp().Run()
  9. // If there was an error report and exit
  10. if err != nil {
  11. log.Fatal(err)
  12. }
  13. }