shortener/shortener/data_structures.py

14 lines
218 B
Python
Raw Normal View History

2021-05-29 15:57:49 +02:00
from dataclasses import dataclass
from flask import request
@dataclass
class UserInput:
short_code: str
url: str
@property
def short_url(self):
return f"{request.host_url}{self.short_code}"