15 lines
160 B
Go
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
|
||
|
}
|