mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-30 09:38:26 -05:00
13 lines
113 B
Go
13 lines
113 B
Go
package main
|
|
|
|
import (
|
|
"ocwrapper/cmd"
|
|
"ocwrapper/common"
|
|
)
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
|
|
common.Wg.Wait()
|
|
}
|