From 4db7df6d6cb956dffe2aa3ca6e46e7a0455319ae Mon Sep 17 00:00:00 2001 From: "jackdaw@loafle.com" Date: Thu, 13 Apr 2017 12:31:43 +0900 Subject: [PATCH] remove const.go --- const.go | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 const.go diff --git a/const.go b/const.go deleted file mode 100644 index 49af42c..0000000 --- a/const.go +++ /dev/null @@ -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 -)