Remove extra console.log

This commit is contained in:
Max Wofford 2020-11-24 18:59:39 -05:00
parent 813f219d53
commit 1354c759db

View file

@ -4,7 +4,6 @@ import { endpoint, ensurePost, parseBody } from "./utils.ts";
// Other functions can import this function to call this serverless endpoint
export const uploadEndpoint = async (url: string) => {
console.log("called upload endpoint on", url);
const response = await fetch("http://localhost:3000/api/v2/upload", {
method: "POST",
body: url,