mirror of https://github.com/mindoc-org/mindoc.git
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};
|
||
|
}
|