#!python
import os
from django_easy_drf.main import create_all
import argparse

parser = argparse.ArgumentParser(description='A command line tool to avoid the boring process of creating Serializers, Views and URLs for django rest framework.')
parser.add_argument('-f', '--force', action='store_true', help='force the creation of specified file without user propt')


args = parser.parse_args()

create_all(os.getcwd(), force=args.force)
