(ctx context.Context, arg CreateCityParams)
| 11 | |
| 12 | type Querier interface { |
| 13 | CreateCity(ctx context.Context, arg CreateCityParams) error |
| 14 | CreateVenue(ctx context.Context, arg CreateVenueParams) (sql.Result, error) |
| 15 | DeleteVenue(ctx context.Context, arg DeleteVenueParams) error |
| 16 | GetCity(ctx context.Context, slug string) (City, error) |
no outgoing calls