Move platformInit and plugin load to server

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby
2017-06-22 13:34:37 -07:00
parent a6e77432df
commit 003ad67375
8 changed files with 78 additions and 75 deletions

View File

@@ -0,0 +1,9 @@
// +build !linux
package server
import "context"
func apply(_ context.Context, _ *Config) error {
return nil
}