github.com/geniusesgroup/libgo@v0.0.0-20220713101832-828057a9d3d4/protocol/gui-information.go (about)

     1  /* For license and copyright information please see LEGAL file in repository */
     2  
     3  package protocol
     4  
     5  // GUIInformation store application, page, widget locale details
     6  // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl
     7  type GUIInformation interface {
     8  	Language() string
     9  	Name() string
    10  	ShortName() string
    11  	Tagline() string
    12  	Slogan() string
    13  	Description() string
    14  	Tags() []string
    15  }