aboutsummaryrefslogtreecommitdiff
path: root/tools/charcrawler/main.go
blob: a87c13c50e815d685caebfd80cb1d73b7b062730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package main

import (
	"time"

	"fagott.pw/grilist/tools/charcrawler/crawler"
)

func main() {
	for _, c := range crawler.Instances {
		go crawler.Start(c)
	}
	for {
		time.Sleep(time.Minute)
	}
}