Commit c8644f53 authored by Ahmad Anvari's avatar Ahmad Anvari

Change file

parent 4ea5bd86
from abc import ABC, abstractmethod from abc import ABC, abstractmethod
from pymongo import MongoClient from pymongo import MongoClient
import os
client = MongoClient() client = MongoClient(host=os.environ['MONGO_HOST'], port=int(os.environ['MONGO_PORT']))
class Model(ABC): class Model(ABC):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment