1
0
Fork 0

initial commit

This commit is contained in:
ston1th 2019-02-11 23:58:53 +01:00
commit dc421f035e
8 changed files with 989 additions and 0 deletions

10
pkg/lang/lang.go Normal file
View file

@ -0,0 +1,10 @@
package lang
var Langs = make(map[string]Lang)
type Lang map[string]Key
type Key struct {
Key byte
Mod byte
}