def endpoint(a:int=3, b:float=4) -> str: """Dummy endpoint, just to show that serve and dash are not mutually exclusive""" return f"{a+b} | {a*b}"