Add sync command

This commit is contained in:
Mikołaj Pęczkowski 2021-11-02 19:19:31 +01:00
commit 5e6a5e23fd
18 changed files with 1077 additions and 0 deletions

16
main.go Normal file
View file

@ -0,0 +1,16 @@
package main
import (
"os"
"gitlab.com/revalus/grm/app"
)
const ()
func main() {
app := app.GitRepositoryManager{}
app.Parse(os.Args)
app.Run()
}