14 lines
232 B
Python
14 lines
232 B
Python
from typing import List, Dict
|
|
|
|
|
|
class Requests:
|
|
def __init__(
|
|
self,
|
|
url: str,
|
|
group: List[str],
|
|
method: str,
|
|
):
|
|
self.root = url
|
|
self.method = method
|
|
self.group = group
|