simple_forecast / app.py
azizalto's picture
test commit
44ebc9f
raw
history blame
105 Bytes
import streamlit as st
def app():
st.write("Hello, World!")
if __name__ == "__main__":
app()