123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package main
- import (
- "os"
- "time"
- _ "github.com/go-sql-driver/mysql"
- )
- func main() {
- Execute()
- os.Exit(0)
- }
- type MapEntry struct {
- Hash uint64
- Url string
- Date1, Date2, Date3 time.Time
- RefCount uint32
- }
|