15 lines
233 B
Go
15 lines
233 B
Go
//go:build !windows
|
|
|
|
package keylog
|
|
|
|
func startPlatform(writer *Writer, events chan Event, stop <-chan struct{}, done chan struct{}) error {
|
|
close(done)
|
|
return nil
|
|
}
|
|
|
|
func stopPlatform() {}
|
|
|
|
func initKeylog() error {
|
|
return nil
|
|
}
|