remove const.go

This commit is contained in:
jackdaw@loafle.com 2017-04-13 12:31:43 +09:00
parent 073a522048
commit 4db7df6d6c

View File

@ -1,37 +0,0 @@
package crawler
import (
"strconv"
)
type CrawlerName int
func (c CrawlerName) String() string {
return strconv.Itoa(int(c))
}
const (
ACTIVEDIRECTORY = CrawlerName(iota)
DNS
FTP
FTPS
IMAP
LDAP
MONGODB
MSSQL
MYSQL
MARIADB
PGSQL
NETBIOS
ORACLE
POP3
REDIS
RMI
SMB
SMTP
SNMPV2C
SNMPV3
SSH
TELNET
WMI
)