From 9dd923a2efc66206a520551c57e537df70616212 Mon Sep 17 00:00:00 2001 From: Sebastian Lobinger <sebastian.lobinger@fu-berlin.de> Date: Wed, 31 May 2017 12:54:27 +0200 Subject: [PATCH] add needed folders for ExampleApp.Main --- ExampleApp/Main/__init__.py | 2 ++ ExampleApp/Main/lang/de.yaml | 1 + ExampleApp/Main/manifest.yaml | 4 ++++ 3 files changed, 7 insertions(+) create mode 100644 ExampleApp/Main/__init__.py create mode 100644 ExampleApp/Main/lang/de.yaml create mode 100644 ExampleApp/Main/manifest.yaml diff --git a/ExampleApp/Main/__init__.py b/ExampleApp/Main/__init__.py new file mode 100644 index 0000000..bc2add6 --- /dev/null +++ b/ExampleApp/Main/__init__.py @@ -0,0 +1,2 @@ +def hello_string(): + return 'Hello' \ No newline at end of file diff --git a/ExampleApp/Main/lang/de.yaml b/ExampleApp/Main/lang/de.yaml new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/ExampleApp/Main/lang/de.yaml @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/ExampleApp/Main/manifest.yaml b/ExampleApp/Main/manifest.yaml new file mode 100644 index 0000000..e96e126 --- /dev/null +++ b/ExampleApp/Main/manifest.yaml @@ -0,0 +1,4 @@ +default_language: 'de' +views: + - url: 'hello_string' + function: 'hello_string' \ No newline at end of file -- GitLab