mirror of
https://github.com/net-byte/water.git
synced 2024-04-21 12:21:38 +00:00
13 lines
252 B
Go
13 lines
252 B
Go
//go:build !linux && !darwin && !windows
|
|
// +build !linux,!darwin,!windows
|
|
|
|
package water
|
|
|
|
// PlatformSpeficParams
|
|
type PlatformSpecificParams struct {
|
|
}
|
|
|
|
func defaultPlatformSpecificParams() PlatformSpecificParams {
|
|
return PlatformSpecificParams{}
|
|
}
|