exclude from simple build tags

This commit is contained in:
A.Unger
2020-01-09 14:33:44 +01:00
parent 4da25c6ac7
commit 90be73044e
5 changed files with 15 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
// +build !simple
package command
import (

View File

@@ -1,3 +1,5 @@
// +build !simple
package command
import (

View File

@@ -1,3 +1,5 @@
// +build !simple
package command
import (

View File

@@ -1,3 +1,5 @@
// +build !simple
package command
import (
@@ -14,6 +16,7 @@ import (
"github.com/owncloud/ocis/pkg/config"
"github.com/owncloud/ocis/pkg/flagset"
"github.com/owncloud/ocis/pkg/micro/runtime"
"github.com/owncloud/ocis/pkg/register"
"go.opencensus.io/stats/view"
"go.opencensus.io/trace"
)
@@ -135,3 +138,7 @@ func Server(cfg *config.Config) cli.Command {
},
}
}
func init() {
register.AddCommand(Server)
}

View File

@@ -1,3 +1,5 @@
// +build !simple
package command
import (