mirror of
https://gitea.com/gitea/tea.git
synced 2025-02-18 15:51:17 +01:00
10 lines
88 B
Go
10 lines
88 B
Go
![]() |
package terminal
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
InterruptErr = errors.New("interrupt")
|
||
|
)
|