A command line tool and a library written in GOLANG for GDG Event.
command line tool:
go get github.com/dalinaum/gdgevent
library:
go get github.com/dalinaum/gdgevent/event
gdgevent
<chapter-id>
<year>
gdgevent 102751345660146384940 2012
package main
import (
"github.com/dalinaum/gdgevent/event"
"time"
)
func main() {
start := time.Unix(0, 0)
end := time.Unix(0, 0)
// if you set start is equal to end, end will be ignored.
cid := "102751345660146384940"
for _, e := range event.GetGDGEvents(cid, start, end) {
e.PrintSummary()
}
}
If you want to know more, see command line tool's source please.
- Homin Lee [email protected]
- Leonardo YongUk kIm [email protected]