File size: 267 Bytes
6b5c900
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from fast_dash import FastDash

# Write the main callback function here
def simple_text_to_text(input_text: str) -> str:
    return input_text


# Initialize your FastDash application here
app = FastDash(simple_text_to_text)

if __name__ == '__main__':
    app.run()