kopia lustrzana https://github.com/OpenDroneMap/WebODM
11 wiersze
176 B
Python
11 wiersze
176 B
Python
|
from app.plugins import PluginBase, Menu, MountPoint
|
||
|
from django.shortcuts import render
|
||
|
|
||
|
class Plugin(PluginBase):
|
||
|
def include_js_files(self):
|
||
|
return ['main.js']
|
||
|
|
||
|
|
||
|
|
||
|
|