This commit is contained in:
crusader 2018-04-23 19:23:29 +09:00
parent 9c9bb88c91
commit 3efa746c76
24 changed files with 24 additions and 24 deletions

View File

@ -19,7 +19,7 @@ func (c *ActiveDirectoryHealthCrawler) String() string {
return "Active Directory Health Crawler"
}
func (c *ActiveDirectoryHealthCrawler) Auth(auth map[string]string) error {
func (c *ActiveDirectoryHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *CassandraHealthCrawler) String() string {
return "Cassandra Health Crawler"
}
func (c *CassandraHealthCrawler) Auth(auth map[string]string) error {
func (c *CassandraHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *DNSHealthCrawler) String() string {
return "DNS Health Crawler"
}
func (c *DNSHealthCrawler) Auth(auth map[string]string) error {
func (c *DNSHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *FTPHealthCrawler) String() string {
return "FTP Health Crawler"
}
func (c *FTPHealthCrawler) Auth(auth map[string]string) error {
func (c *FTPHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *HTTPHealthCrawler) String() string {
return "HTTP Health Crawler"
}
func (c *HTTPHealthCrawler) Auth(auth map[string]string) error {
func (c *HTTPHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *IMAPHealthCrawler) String() string {
return "IMAP Health Crawler"
}
func (c *IMAPHealthCrawler) Auth(auth map[string]string) error {
func (c *IMAPHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *LDAPHealthCrawler) String() string {
return "Active Directory Health Crawler"
}
func (c *LDAPHealthCrawler) Auth(auth map[string]string) error {
func (c *LDAPHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *MongoDBHealthCrawler) String() string {
return "MongoDB Health Crawler"
}
func (c *MongoDBHealthCrawler) Auth(auth map[string]string) error {
func (c *MongoDBHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *MySQLHealthCrawler) String() string {
return "MySQL Health Crawler"
}
func (c *MySQLHealthCrawler) Auth(auth map[string]string) error {
func (c *MySQLHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *NetBIOSHealthCrawler) String() string {
return "NetBIOS Health Crawler"
}
func (c *NetBIOSHealthCrawler) Auth(auth map[string]string) error {
func (c *NetBIOSHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *OracleHealthCrawler) String() string {
return "Oracle Health Crawler"
}
func (c *OracleHealthCrawler) Auth(auth map[string]string) error {
func (c *OracleHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *POPHealthCrawler) String() string {
return "POP Health Crawler"
}
func (c *POPHealthCrawler) Auth(auth map[string]string) error {
func (c *POPHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *PostgreSQLHealthCrawler) String() string {
return "PostgreSQL Health Crawler"
}
func (c *PostgreSQLHealthCrawler) Auth(auth map[string]string) error {
func (c *PostgreSQLHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *RedisHealthCrawler) String() string {
return "Redis Health Crawler"
}
func (c *RedisHealthCrawler) Auth(auth map[string]string) error {
func (c *RedisHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *RMIHealthCrawler) String() string {
return "RMI Health Crawler"
}
func (c *RMIHealthCrawler) Auth(auth map[string]string) error {
func (c *RMIHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *SMBHealthCrawler) String() string {
return "SMB Health Crawler"
}
func (c *SMBHealthCrawler) Auth(auth map[string]string) error {
func (c *SMBHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *SMTPHealthCrawler) String() string {
return "SMTP Health Crawler"
}
func (c *SMTPHealthCrawler) Auth(auth map[string]string) error {
func (c *SMTPHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *SNMPHealthCrawler) String() string {
return "SNMP V2C Health Crawler"
}
func (c *SNMPHealthCrawler) Auth(auth map[string]string) error {
func (c *SNMPHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *SNMPHealthCrawler) String() string {
return "SNMP V3 Health Crawler"
}
func (c *SNMPHealthCrawler) Auth(auth map[string]string) error {
func (c *SNMPHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *SQLServerHealthCrawler) String() string {
return "SQL Server Health Crawler"
}
func (c *SQLServerHealthCrawler) Auth(auth map[string]string) error {
func (c *SQLServerHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *SSHHealthCrawler) String() string {
return "SSH Health Crawler"
}
func (c *SSHHealthCrawler) Auth(auth map[string]string) error {
func (c *SSHHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *TelnetHealthCrawler) String() string {
return "Telnet Health Crawler"
}
func (c *TelnetHealthCrawler) Auth(auth map[string]string) error {
func (c *TelnetHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -19,7 +19,7 @@ func (c *WMIHealthCrawler) String() string {
return "WMI Health Crawler"
}
func (c *WMIHealthCrawler) Auth(auth map[string]string) error {
func (c *WMIHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}

View File

@ -25,7 +25,7 @@ func (c *SSHCrawler) String() string {
return "SSH Crawler"
}
func (c *SSHCrawler) Auth(auth map[string]string) error {
func (c *SSHCrawler) Auth(auth map[string]interface{}) error {
return nil
}