feat(lang): Language type

This commit is contained in:
Gustavo "Guz" L. de Mello
2024-08-08 20:29:10 -03:00
parent 22b8273059
commit dbd653831c

8
internals/lang/lang.go Normal file
View File

@@ -0,0 +1,8 @@
package lang
type Language string
const (
EN Language = "en"
PT Language = "pt"
)