From ccd6a43b49e83fb601c039d29fe0980efe41e6e6 Mon Sep 17 00:00:00 2001 From: Anson Date: Tue, 3 Mar 2020 20:05:40 -0700 Subject: [PATCH] changed endpoint to /quote --- host.json | 3 ++- {chainz-rest => quote}/__init__.py | 0 {chainz-rest => quote}/function.json | 0 {chainz-rest => quote}/quotes.py | 0 4 files changed, 2 insertions(+), 1 deletion(-) rename {chainz-rest => quote}/__init__.py (100%) rename {chainz-rest => quote}/function.json (100%) rename {chainz-rest => quote}/quotes.py (100%) diff --git a/host.json b/host.json index d342a8e..67f179d 100644 --- a/host.json +++ b/host.json @@ -3,5 +3,6 @@ "extensionBundle": { "id": "Microsoft.Azure.Functions.ExtensionBundle", "version": "[1.*, 2.0.0)" - } + }, + "extensions": { "http": { "routePrefix": "" } } } diff --git a/chainz-rest/__init__.py b/quote/__init__.py similarity index 100% rename from chainz-rest/__init__.py rename to quote/__init__.py diff --git a/chainz-rest/function.json b/quote/function.json similarity index 100% rename from chainz-rest/function.json rename to quote/function.json diff --git a/chainz-rest/quotes.py b/quote/quotes.py similarity index 100% rename from chainz-rest/quotes.py rename to quote/quotes.py