(site string)
| 755 | } |
| 756 | |
| 757 | func (c *Config) GetPhishlet(site string) (*Phishlet, error) { |
| 758 | pl, ok := c.phishlets[site] |
| 759 | if !ok { |
| 760 | return nil, fmt.Errorf("phishlet '%s' not found", site) |
| 761 | } |
| 762 | return pl, nil |
| 763 | } |
| 764 | |
| 765 | func (c *Config) GetPhishletNames() []string { |
| 766 | return c.phishletNames |
no outgoing calls
no test coverage detected