1
0
forked from erp-dev/erp

feat: sse && multi_merchant completed

This commit is contained in:
2025-11-11 10:56:20 +08:00
parent b2078dfa46
commit 2aafb93aad
43 changed files with 2445 additions and 244 deletions

0
stateflow/__init__.py Normal file
View File

3
stateflow/admin.py Normal file
View File

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

6
stateflow/apps.py Normal file
View File

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

View File

3
stateflow/models.py Normal file
View File

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

3
stateflow/tests.py Normal file
View File

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

3
stateflow/views.py Normal file
View File

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