Projekt

Obecné

Profil

Stáhnout (212 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
class IRepository:
2
    def create(self, *args) -> bool:
3
        pass
4

    
5
    def read(self, *args):
6
        pass
7

    
8
    def update(self, *args) -> bool:
9
        pass
10

    
11
    def delete(self, *args) -> bool:
12
        pass
    (1-1/1)