Files
magnumopus/lerproxy/util.go
2024-09-12 20:45:58 +01:00

20 lines
189 B
Go
Executable File

package main
import (
"bytes"
"os"
"ec.mleku.dev/v2/lol"
)
type (
B = []byte
S = string
E = error
)
var (
log, chk, errorf = lol.New(os.Stderr)
equals = bytes.Equal
)