mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2025-04-19 00:45:16 +00:00
VPN invite public app
This commit is contained in:
parent
7396080bce
commit
27a2853d2a
0
vpn_invite_public/__init__.py
Normal file
0
vpn_invite_public/__init__.py
Normal file
3
vpn_invite_public/admin.py
Normal file
3
vpn_invite_public/admin.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
6
vpn_invite_public/apps.py
Normal file
6
vpn_invite_public/apps.py
Normal file
@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class VpnInvitePublicConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'vpn_invite_public'
|
0
vpn_invite_public/migrations/__init__.py
Normal file
0
vpn_invite_public/migrations/__init__.py
Normal file
3
vpn_invite_public/models.py
Normal file
3
vpn_invite_public/models.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
vpn_invite_public/tests.py
Normal file
3
vpn_invite_public/tests.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
vpn_invite_public/views.py
Normal file
3
vpn_invite_public/views.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
Loading…
x
Reference in New Issue
Block a user