github.com/kaleido-io/firefly@v0.0.0-20210622132723-8b4b6aacb971/internal/apiserver/routes.go (about)

     1  // Copyright © 2021 Kaleido, Inc.
     2  //
     3  // SPDX-License-Identifier: Apache-2.0
     4  //
     5  // Licensed under the Apache License, Version 2.0 (the "License");
     6  // you may not use this file except in compliance with the License.
     7  // You may obtain a copy of the License at
     8  //
     9  //     http://www.apache.org/licenses/LICENSE-2.0
    10  //
    11  // Unless required by applicable law or agreed to in writing, software
    12  // distributed under the License is distributed on an "AS IS" BASIS,
    13  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    14  // See the License for the specific language governing permissions and
    15  // limitations under the License.
    16  
    17  package apiserver
    18  
    19  import "github.com/kaleido-io/firefly/internal/oapispec"
    20  
    21  const emptyObjectSchema = `{"type": "object"}`
    22  
    23  var routes = []*oapispec.Route{
    24  	deleteSubscription,
    25  	getBatchByID,
    26  	getBatches,
    27  	getData,
    28  	getDataByID,
    29  	getDataDefByID,
    30  	getDataDefs,
    31  	getDataMsgs,
    32  	getEventByID,
    33  	getEvents,
    34  	getMsgByID,
    35  	getMsgData,
    36  	getMsgEvents,
    37  	getMsgOps,
    38  	getMsgTxn,
    39  	getMsgs,
    40  	getNetworkOrg,
    41  	getNetworkOrgs,
    42  	getNetworkNode,
    43  	getNetworkNodes,
    44  	getNamespace,
    45  	getNamespaces,
    46  	getOpByID,
    47  	getOps,
    48  	getSubscriptionByID,
    49  	getSubscriptions,
    50  	getTxnByID,
    51  	getTxnOps,
    52  	getTxns,
    53  	postBroadcastDatatype,
    54  	postBroadcastMessage,
    55  	postBroadcastNamespace,
    56  	postData,
    57  	postNewSubscription,
    58  	postRegisterOrg,
    59  	postRegisterNode,
    60  	postRegisterNodeOrg,
    61  	postSendMessage,
    62  }