Updated Upwork API

This commit is contained in:
Hashir Omer
2024-08-03 22:53:13 +05:00
commit c7c2998595
12 changed files with 1375 additions and 0 deletions

13
main.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import "scrapers/upwork"
func main() {
p := upwork.InitPipeline()
err := p.Run("")
if err != nil {
panic(err)
}
}