mirror of
https://github.com/rclone/rclone
synced 2024-11-12 10:50:08 +01:00
14 lines
150 B
Go
14 lines
150 B
Go
//+build !windows
|
|
|
|
package cmd
|
|
|
|
import "os"
|
|
|
|
func initTerminal() error {
|
|
return nil
|
|
}
|
|
|
|
func writeToTerminal(b []byte) {
|
|
_, _ = os.Stdout.Write(b)
|
|
}
|