Add uncloud_storage template app

This commit is contained in:
fnux 2020-02-28 14:48:01 +01:00
parent 3b87a47430
commit 33cc2b2111
8 changed files with 18 additions and 0 deletions

View File

@ -62,6 +62,7 @@ INSTALLED_APPS = [
'rest_framework',
'uncloud_pay',
'uncloud_auth',
'uncloud_storage',
'uncloud_vm',
'ungleich_service',
'opennebula'

View File

View File

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

View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class UncloudStorageConfig(AppConfig):
name = 'uncloud_storage'

View File

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

View File

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

View File

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