This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from abc import ABC, abstractmethod | |
| from datetime import datetime | |
| #creating the ID function | |
| id_counter = 1000000000 | |
| def create_id(): | |
| global id_counter | |
| id_counter += 1 | |
| return id_counter |