mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 17:44:57 +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)
|
|
}
|