Documentation ¶
Index ¶
- type AccountCheckerModule
- func (module *AccountCheckerModule) Author() string
- func (module *AccountCheckerModule) Description() string
- func (module *AccountCheckerModule) GetInformation() session.ModuleInformation
- func (module *AccountCheckerModule) GetType() []string
- func (module *AccountCheckerModule) LoadingSites(sites *GeneratedSites) bool
- func (module *AccountCheckerModule) Name() string
- func (module *AccountCheckerModule) Start()
- type GeneratedSites
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccountCheckerModule ¶
type AccountCheckerModule struct { session.SessionModule Stream *session.Stream `json:"-"` // contains filtered or unexported fields }
func PushAccountCheckerModule ¶
func PushAccountCheckerModule(s *session.Session) *AccountCheckerModule
func (*AccountCheckerModule) Author ¶
func (module *AccountCheckerModule) Author() string
func (*AccountCheckerModule) Description ¶
func (module *AccountCheckerModule) Description() string
func (*AccountCheckerModule) GetInformation ¶
func (module *AccountCheckerModule) GetInformation() session.ModuleInformation
func (*AccountCheckerModule) GetType ¶
func (module *AccountCheckerModule) GetType() []string
func (*AccountCheckerModule) LoadingSites ¶
func (module *AccountCheckerModule) LoadingSites(sites *GeneratedSites) bool
func (*AccountCheckerModule) Name ¶
func (module *AccountCheckerModule) Name() string
func (*AccountCheckerModule) Start ¶
func (module *AccountCheckerModule) Start()
type GeneratedSites ¶
type GeneratedSites struct { License []string `json:"license"` Authors []string `json:"authors"` Sites []struct { Name string `json:"name"` CheckURI string `json:"check_uri"` AccountExistenceCode string `json:"account_existence_code"` AccountExistenceString string `json:"account_existence_string"` AccountMissingString string `json:"account_missing_string"` AccountMissingCode string `json:"account_missing_code"` KnownAccounts []string `json:"known_accounts"` Category string `json:"category"` Valid bool `json:"valid"` PrettyURI string `json:"pretty_uri,omitempty"` Comments []string `json:"comments,omitempty"` KnownMissingAccounts []string `json:"known_missing_accounts,omitempty"` AllowedTypes []string `json:"allowed_types,omitempty"` } `json:"sites"` }
Click to show internal directories.
Click to hide internal directories.