mirror of
https://github.com/Hopiu/bowser.git
synced 2026-03-17 03:20:24 +00:00
14 lines
225 B
Python
14 lines
225 B
Python
|
|
"""Entry point for Bowser browser (stub)."""
|
||
|
|
|
||
|
|
from src.browser.browser import Browser
|
||
|
|
|
||
|
|
|
||
|
|
def main():
|
||
|
|
browser = Browser()
|
||
|
|
browser.new_tab("https://example.com")
|
||
|
|
browser.run()
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
main()
|