Re-added app_sdk to main repo with MIT

This commit is contained in:
frikky
2020-05-24 06:50:59 +02:00
parent bd375f3a28
commit f94ef2bffa
13 changed files with 62 additions and 8 deletions
+2 -2
View File
@@ -122,8 +122,8 @@ func streamZipdata(ctx context.Context, identifier, pythoncode, requirements str
func getAppbase() ([]byte, []byte, error) {
// 1. Have baseline in bucket/generated_apps/baseline
// 2. Copy the baseline to a new folder with identifier name
static := "../../functions/static_baseline.py"
appbase := "../../functions/onprem/app_sdk/app_base.py"
static := "../app_sdk/static_baseline.py"
appbase := "../app_sdk/app_base.py"
staticData, err := ioutil.ReadFile(static)
if err != nil {