mirror of
https://github.com/mindoc-org/mindoc.git
synced 2026-02-27 17:03:57 +08:00
11 lines
120 B
Go
11 lines
120 B
Go
package gocaptcha
|
|
|
|
type Point struct {
|
|
X int
|
|
Y int
|
|
}
|
|
|
|
func NewPoint(x int,y int) *Point{
|
|
return &Point{ X :x,Y:y};
|
|
}
|