Files
realy/util.go
2024-09-16 19:21:34 +01:00

22 lines
260 B
Go

package realy
import (
"bytes"
"realy.lol/context"
"realy.lol/lol"
)
type (
B = []byte
S = string
E = error
N = int
Ctx = context.T
)
var (
log, chk, errorf = lol.Main.Log, lol.Main.Check, lol.Main.Errorf
equals = bytes.Equal
)