12 lines
211 B
Go
12 lines
211 B
Go
// +build !linux,!darwin,!windows
|
|
|
|
package water
|
|
|
|
// PlatformSpeficParams
|
|
type PlatformSpecificParams struct {
|
|
}
|
|
|
|
func defaultPlatformSpecificParams() PlatformSpecificParams {
|
|
return PlatformSpecificParams{}
|
|
}
|