Merge pull request #3515 from cfromknecht/default-wtclientrpc

make: compile wtclientrpc by default
This commit is contained in:
Olaoluwa Osuntokun 2019-09-18 21:54:20 -07:00 committed by GitHub
commit c69fc35a8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 0 additions and 22 deletions

@ -1,5 +1,3 @@
// +build wtclientrpc
package main
import (

@ -1,10 +0,0 @@
// +build !wtclientrpc
package main
import "github.com/urfave/cli"
// wtclientCommands will return nil for non-wtclientrpc builds.
func wtclientCommands() []cli.Command {
return nil
}

@ -1,5 +1,3 @@
// +build wtclientrpc
package main
import (

@ -1,5 +1,3 @@
// +build wtclientrpc
package wtclientrpc
import (

@ -1,6 +0,0 @@
// +build !wtclientrpc
package wtclientrpc
// Config is empty for non-wtclientrpc builds.
type Config struct{}