browser-use--browser-harness
12 行
134 B
Python
12 行
134 B
Python
import sys
|
|
from helpers import *
|
|
|
|
|
|
def main():
|
|
ensure_daemon()
|
|
exec(sys.stdin.read())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|