10 lines
153 B
Go
10 lines
153 B
Go
|
package ansi
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
const ClearScreen = "\x1b[2J"
|
||
|
const ResetCursor = "\x1b[H"
|
||
|
|
||
|
func Code (s string) string {
|
||
|
return fmt.Sprintf("\x1b[%s", s)
|
||
|
}
|