10 lines
262 B
Python
Executable file
10 lines
262 B
Python
Executable file
#!/usr/bin/env python3
|
|
import webview
|
|
from backend import app
|
|
|
|
if __name__ == "__main__":
|
|
# Create a standard webview window
|
|
window = webview.create_window(
|
|
"badl - BiliBili Audio Downloader", app, width=500, height=700
|
|
)
|
|
webview.start()
|