11 lines
262 B
Python
11 lines
262 B
Python
|
#!/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()
|