httb/benchmark/locustfile.py
2024-07-20 01:32:20 +03:00

5 lines
119 B
Python

from locust import HttpUser, task
class RootUser(HttpUser):
@task
def root(self):
self.client.get("/")