mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-10 23:56:24 -04:00
8 lines
101 B
Go
8 lines
101 B
Go
// +build !go1.2
|
|
|
|
package gcfg
|
|
|
|
type textUnmarshaler interface {
|
|
UnmarshalText(text []byte) error
|
|
}
|