Skip to content

Commit

Permalink
feat: added excelize
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinJWendt committed Mar 16, 2022
1 parent b82bd6d commit 0b54359
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions modules/modules.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,22 @@ var Modules = []Module{
{"gin", "github.com/gin-gonic/gin", Tags{WEB_FRAMEWORK}},
{"lo", "github.com/samber/lo", Tags{UTILS}},
{"colly", "github.com/gocolly/colly/v2", Tags{WEB_SCRAPER}},
{"excelize", "github.com/qax-os/excelize/v2", Tags{DOCUMENT_PARSER}},
}

type Tag string
type Tags []Tag

const (
WEB_FRAMEWORK Tag = "Web Framework"
WEB_SCRAPER Tag = "Web Scraper"
CLI Tag = "CLI"
TEST_FRAMEWORK Tag = "Test Framework"
ORM Tag = "ORM"
LOGGING Tag = "Logging"
GUI Tag = "GUI"
UTILS Tag = "Utils"
WEB_FRAMEWORK Tag = "Web Framework"
WEB_SCRAPER Tag = "Web Scraper"
CLI Tag = "CLI"
TEST_FRAMEWORK Tag = "Test Framework"
ORM Tag = "ORM"
LOGGING Tag = "Logging"
GUI Tag = "GUI"
UTILS Tag = "Utils"
DOCUMENT_PARSER Tag = "Document Parser"
)

func (t Tags) String() string {
Expand Down

0 comments on commit 0b54359

Please sign in to comment.