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