1
0
Fork 0
duckycode/pkg/lang/lang.go
2019-02-12 20:55:02 +01:00

12 lines
142 B
Go

// Copyright (C) 2019 ston1th
package lang
var L = make(map[string]Lang)
type Lang map[string]Key
type Key struct {
Key byte
Mod byte
}