Rename actual module

This commit is contained in:
2025-09-28 22:33:22 -04:00
parent 2a5acd73db
commit b6db29d1bb
7 changed files with 0 additions and 0 deletions

0
ai_blocker/__init__.py Normal file
View File

3
ai_blocker/admin.py Normal file
View File

@@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

6
ai_blocker/apps.py Normal file
View File

@@ -0,0 +1,6 @@
from django.apps import AppConfig
class AiBlockerConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'ai_blocker'

View File

3
ai_blocker/models.py Normal file
View File

@@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
ai_blocker/tests.py Normal file
View File

@@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
ai_blocker/views.py Normal file
View File

@@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.