From 3bd326baf539c1ea38da28f6e66b273edc17e954 Mon Sep 17 00:00:00 2001 From: Prokop Randacek Date: Thu, 16 May 2024 15:31:18 +0200 Subject: [PATCH] Disclaim the copyright --- geohash.deno.ts | 3 +++ mapycz.deno.ts | 3 +++ server.deno.ts | 3 +++ tgbot.deno.ts | 3 +++ 4 files changed, 12 insertions(+) diff --git a/geohash.deno.ts b/geohash.deno.ts index ad3997d..f929e41 100644 --- a/geohash.deno.ts +++ b/geohash.deno.ts @@ -1,3 +1,6 @@ +// The authors disclaim copyright to this source code (they are ashamed to +// admit they wrote it) + import { crypto } from "https://deno.land/std@0.190.0/crypto/mod.ts"; import { coordsToString } from "./mapycz.deno.ts"; diff --git a/mapycz.deno.ts b/mapycz.deno.ts index aebec1e..a67f368 100644 --- a/mapycz.deno.ts +++ b/mapycz.deno.ts @@ -1,3 +1,6 @@ +// The authors disclaim copyright to this source code (they are ashamed to +// admit they wrote it) + const alphabet = [ "0", "A", diff --git a/server.deno.ts b/server.deno.ts index c73d480..1bdb265 100644 --- a/server.deno.ts +++ b/server.deno.ts @@ -1,3 +1,6 @@ +// The authors disclaim copyright to this source code (they are ashamed to +// admit they wrote it) + import { serveDir } from "https://deno.land/std@0.190.0/http/file_server.ts"; import { handleRequest as handleTgRequest, diff --git a/tgbot.deno.ts b/tgbot.deno.ts index 4ae4aef..f902c04 100644 --- a/tgbot.deno.ts +++ b/tgbot.deno.ts @@ -1,3 +1,6 @@ +// The authors disclaim copyright to this source code (they are ashamed to +// admit they wrote it) + import unidecode from "npm:unidecode"; import { geohash } from "./geohash.deno.ts"; import { getImageForPoints, getUrlForPoints } from "./mapycz.deno.ts";