mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-05-07 20:15:31 -05:00
f0671015f8
Signed-off-by: jkoberg <jkoberg@owncloud.com>
15 lines
221 B
Go
15 lines
221 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/owncloud/ocis/audit/pkg/command"
|
|
"github.com/owncloud/ocis/audit/pkg/config"
|
|
)
|
|
|
|
func main() {
|
|
if err := command.Execute(config.DefaultConfig()); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|