9 lines
156 B
Go
9 lines
156 B
Go
//go:build !windows
|
|
|
|
package clipmon
|
|
|
|
func startPlatform(_ *Writer, _ chan Event, _ <-chan struct{}, done chan struct{}) error {
|
|
close(done)
|
|
return nil
|
|
}
|