mirror of
https://github.com/Hopiu/bowser.git
synced 2026-04-12 15:30:57 +00:00
13 lines
225 B
Python
13 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()
|