github.com/GeniusesGroup/libgo@v0.0.0-20220929090155-5ff932cb408e/command/locale.eng.go (about) 1 //go:build lang_eng 2 3 /* For license and copyright information please see the LEGAL file in the code repository */ 4 5 package cmd 6 7 import ( 8 er "github.com/GeniusesGroup/libgo/error" 9 "github.com/GeniusesGroup/libgo/protocol" 10 ) 11 12 const domainEnglish = "Command" 13 14 func init() { 15 ErrServiceNotAcceptCLI.SetDetail(protocol.LanguageEnglish, domainEnglish, "Service Not Accept CLI", 16 "Requested service not accept CLI protocol in this server", 17 "Try other server or contact support of the software", 18 "It is so easy to implement CLI handler for a service! Take a time and do it!", 19 nil) 20 }