stsg / shorty

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

URL shortener

DB structure

table url
CREATE TABLE urls (
    uuid            SERIAL PRIMARY KEY,
    short_url       TEXT not null,
    original_url    TEXT not null
)

NOTE: todo

About


Languages

Language:Go 98.4%Language:Makefile 1.6%