add the place service (#376)

This commit is contained in:
Asim Aslam
2022-02-15 14:49:03 +00:00
committed by GitHub
parent e4e3db1f0f
commit 9a48343e56
14 changed files with 1150 additions and 0 deletions

10
place/handler/place.go Normal file
View File

@@ -0,0 +1,10 @@
package handler
type Place struct{
*Google
}
func New() *Place {
g := NewGoogle()
return &Place{g}
}