pi-calendar/pkg/calendar/calendar.go

15 lines
160 B
Go
Raw Normal View History

2019-12-10 14:15:27 +00:00
package calendar
import (
"image"
"github.com/fogleman/gg"
)
// Draw -
func Draw(w, h int) *image.Image {
dc := gg.NewContext(w, h)
_ = dc
return nil
}