Adds download support for files store in the QuanLib EFS.
[quanweb.git] / main / config.go
1 package main
2
3 type qwConfig struct {
4   user, pass, dbName, efsBasePath  string
5 }
6
7 func getConfig() qwConfig {
8   // TODO:  use a real password, and load config info from a file
9   return qwConfig{user:"quanlib", pass:"quanlib", dbName:"quanlib", efsBasePath:"/arc/quanlib/efs"}
10 }