Add 'proxy/' from commit '201b9a652685cdfb72ba81c7e7b00ba1c60a0e35'

git-subtree-dir: proxy
git-subtree-mainline: 571d96e856
git-subtree-split: 201b9a6526
This commit is contained in:
A.Unger
2020-09-18 12:47:26 +02:00
107 changed files with 8151 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package main
import (
"os"
"github.com/owncloud/ocis-proxy/pkg/command"
)
func main() {
if err := command.Execute(); err != nil {
os.Exit(1)
}
}