pi-calendar/pkg/calendar/calendar.go
2019-12-10 14:15:27 +00:00

15 lines
160 B
Go

package calendar
import (
"image"
"github.com/fogleman/gg"
)
// Draw -
func Draw(w, h int) *image.Image {
dc := gg.NewContext(w, h)
_ = dc
return nil
}