File size: 207 Bytes
5fe2042
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from typing import List, Tuple


class StaticBasicAuthMiddleware:
    def __init__(self, auth_tuples: List[Tuple[str, str]]):
        raise NotImplementedError