Documentation ¶
Index ¶
- type DarkSearchModule
- func (module *DarkSearchModule) Author() string
- func (module *DarkSearchModule) Description() string
- func (module *DarkSearchModule) GetInformation() session.ModuleInformation
- func (module *DarkSearchModule) GetType() []string
- func (module *DarkSearchModule) Name() string
- func (module *DarkSearchModule) Start()
- type DarkSearchResults
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DarkSearchModule ¶
type DarkSearchModule struct { session.SessionModule Session *session.Session `json:"-"` Stream *session.Stream `json:"-"` }
func PushDarkSearchModule ¶
func PushDarkSearchModule(s *session.Session) *DarkSearchModule
func (*DarkSearchModule) Author ¶
func (module *DarkSearchModule) Author() string
func (*DarkSearchModule) Description ¶
func (module *DarkSearchModule) Description() string
func (*DarkSearchModule) GetInformation ¶
func (module *DarkSearchModule) GetInformation() session.ModuleInformation
func (*DarkSearchModule) GetType ¶
func (module *DarkSearchModule) GetType() []string
func (*DarkSearchModule) Name ¶
func (module *DarkSearchModule) Name() string
func (*DarkSearchModule) Start ¶
func (module *DarkSearchModule) Start()
type DarkSearchResults ¶
type DarkSearchResults struct { Total int `json:"total"` PerPage int `json:"per_page"` CurrentPage int `json:"current_page"` LastPage int `json:"last_page"` From int `json:"from"` To int `json:"to"` Data []struct { Title string `json:"title"` Link string `json:"link"` Description string `json:"description"` } `json:"data"` }
Click to show internal directories.
Click to hide internal directories.