github.com/optim-corp/cios-golang-sdk@v0.5.1/sdk/mock/geography.go (about)

     1  package ciossdmock
     2  
     3  import (
     4  	_nethttp "net/http"
     5  
     6  	"github.com/optim-corp/cios-golang-sdk/cios"
     7  	ciosctx "github.com/optim-corp/cios-golang-sdk/ctx"
     8  )
     9  
    10  type NoImplementGeography struct{}
    11  
    12  func (NoImplementGeography) GetPoints(ctx ciosctx.RequestCtx, request cios.ApiGetPointsRequest) (cios.MultiplePoint, *_nethttp.Response, error) {
    13  	panic("implement me")
    14  }
    15  
    16  func (NoImplementGeography) CreatePoint(ctx ciosctx.RequestCtx, request cios.PointRequest) (cios.Point, *_nethttp.Response, error) {
    17  	panic("implement me")
    18  }
    19  
    20  func (NoImplementGeography) DeletePoint(ctx ciosctx.RequestCtx, s string) (cios.Point, *_nethttp.Response, error) {
    21  	panic("implement me")
    22  }