10 lines
133 B
Go
10 lines
133 B
Go
// +build !linux,!windows,!solaris
|
|
|
|
package server
|
|
|
|
import "context"
|
|
|
|
func apply(_ context.Context, _ *Config) error {
|
|
return nil
|
|
}
|