mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-21 01:58:38 -05:00
51e1aa2978
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
15 lines
260 B
Go
15 lines
260 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/owncloud/ocis/v2/extensions/users/pkg/command"
|
|
"github.com/owncloud/ocis/v2/extensions/users/pkg/config/defaults"
|
|
)
|
|
|
|
func main() {
|
|
if err := command.Execute(defaults.DefaultConfig()); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|