mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-16 11:48:13 +01:00
12 lines
130 B
Go
12 lines
130 B
Go
package util
|
|
|
|
import (
|
|
"bufio"
|
|
"os"
|
|
)
|
|
|
|
func ReadLine() string {
|
|
s, _ := bufio.NewReader(os.Stdin).ReadString('\n')
|
|
return s
|
|
}
|