mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-31 01:10:20 -06:00
15 lines
266 B
Go
15 lines
266 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/owncloud/ocis/v2/services/auth-basic/pkg/command"
|
|
"github.com/owncloud/ocis/v2/services/auth-basic/pkg/config/defaults"
|
|
)
|
|
|
|
func main() {
|
|
if err := command.Execute(defaults.DefaultConfig()); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|