Skip to content

GDG-Korea/gdgevent

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

GDG Event

A command line tool and a library written in GOLANG for GDG Event.

Install

command line tool:

go get github.com/dalinaum/gdgevent

library:

go get github.com/dalinaum/gdgevent/event

Command line tool usage

gdgevent <chapter-id> <year>

gdgevent 102751345660146384940 2012

Sample

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.

Authors

About

A command line tool and a library written in GOLANG for GDG Event.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages