Spaces:
Sleeping
Sleeping
import modal | |
import os | |
app = modal.App("test-volume") | |
def test_func(): | |
print("Contents of the volume:", os.listdir("/my_vol")) | |
def main(): | |
test_func.call() | |