Commit 14cbefca authored by Kevin Di Lallo's avatar Kevin Di Lallo
Browse files

review comment updates + regenerated code

parent fc1a7f6c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ To see how to make this your own, look here:
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)

- API version: 0.0.1
- Build date: 2020-06-08T15:05:49.636-04:00
- Build date: 2020-06-10T13:31:22.169-04:00


### Running the server
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ To see how to make this your own, look here:
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)

- API version: 0.0.1
- Build date: 2020-06-08T15:05:51.024-04:00
- Build date: 2020-06-10T13:31:23.528-04:00


### Running the server
+1 −1
Original line number Diff line number Diff line
# Copyright (c) 2019  InterDigital Communications, Inc
# Copyright (c) 2020  InterDigital Communications, Inc
# 
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
+2 −2
Original line number Diff line number Diff line
@@ -107,8 +107,8 @@ paths:
      parameters:
      - name: "assetType"
        in: "query"
        description: "Filter by asset type (e.g. ue, poa, poa-cellular, edge, fog,\
          \ etc.)"
        description: "Filter by asset type (i.e. UE, POA, POA-CELLULAR, EDGE, FOG,\
          \ CLOUD)"
        required: false
        type: "string"
        x-exportParamName: "AssetType"
+2 −2
Original line number Diff line number Diff line
/*
 * Copyright (c) 2019  InterDigital Communications, Inc
 * Copyright (c) 2020  InterDigital Communications, Inc
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
@@ -67,7 +67,7 @@ func main() {

		// Start GIS Engine REST API Server
		router := server.NewRouter()
		methods := handlers.AllowedMethods([]string{"OPTIONS", "DELETE", "GET", "HEAD", "POST", "PUT"})
		methods := handlers.AllowedMethods([]string{"DELETE", "GET", "POST"})
		header := handlers.AllowedHeaders([]string{"content-type"})
		log.Fatal(http.ListenAndServe(":80", handlers.CORS(methods, header)(router)))
		run = false
Loading