Skip to content

Commit

Permalink
V2.0.0 (#16)
Browse files Browse the repository at this point in the history
* V2 Muitas Alterações

Irá alertar no slack quando um ativo new aparecer

* v2.0.0

verificar status e customer

robô setar os delivery points

atualizar tarefas done to closed
  • Loading branch information
zani0x03 authored Apr 22, 2024
1 parent 9d2dd45 commit 889cbf7
Show file tree
Hide file tree
Showing 22 changed files with 830 additions and 133 deletions.
2 changes: 1 addition & 1 deletion integration_platform_clickup_go/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"mode": "auto",
"program": "${workspaceFolder}/main.go",
"console": "externalTerminal",
// "args": ["-ii", "journey"]
"args": ["-tv", "journey"]
}

]
Expand Down
Binary file added integration_platform_clickup_go/db/db.db
Binary file not shown.
6 changes: 5 additions & 1 deletion integration_platform_clickup_go/gerarCompilado.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
#!/bin/bash

version="v01.00.06"
version="v02.00.00"
mainFileName="IntegrationPlatformClickup"
fileNameCompact=""
auxFileName=""

echo "Limpando database"
echo "delete from assets;" | sqlite3 db/db.db


echo "Gerando Windows - AMD64"
auxFileName=$mainFileName".exe"
rm -rf $auxFileName
Expand Down
25 changes: 21 additions & 4 deletions integration_platform_clickup_go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,33 @@ module integration_platform_clickup_go

go 1.21.1

require (
github.com/gocolly/colly v1.2.0
github.com/jaytaylor/html2text v0.0.0-20230321000545-74c2419ad056
golang.org/x/exp v0.0.0-20230420155640-133eef4313cb
gopkg.in/yaml.v2 v2.4.0
)

require (
github.com/PuerkitoBio/goquery v1.8.1 // indirect
github.com/andybalholm/cascadia v1.3.1 // indirect
github.com/jaytaylor/html2text v0.0.0-20230321000545-74c2419ad056 // indirect
github.com/antchfx/htmlquery v1.2.3 // indirect
github.com/antchfx/xmlquery v1.2.4 // indirect
github.com/antchfx/xpath v1.1.8 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gobwas/glob v0.2.3 // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/golang/protobuf v1.4.2 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/kennygrant/sanitize v1.2.4 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/mattn/go-sqlite3 v1.14.22 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/saintfish/chardet v0.0.0-20120816061221-3af4cd4741ca // indirect
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
golang.org/x/exp v0.0.0-20230420155640-133eef4313cb // indirect
github.com/temoto/robotstxt v1.1.1 // indirect
golang.org/x/net v0.9.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
golang.org/x/text v0.9.0 // indirect
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/protobuf v1.24.0 // indirect
)
121 changes: 97 additions & 24 deletions integration_platform_clickup_go/go.sum

Large diffs are not rendered by default.

Loading

0 comments on commit 889cbf7

Please sign in to comment.