Progress on data source admin

This commit is contained in:
Torkel Ödegaard
2014-12-16 16:45:07 +01:00
parent b70a3f0958
commit 27f07e9de2
10 changed files with 106 additions and 72 deletions
+10
View File
@@ -33,3 +33,13 @@ type GetDataSourcesQuery struct {
AccountId int64
Resp []*DataSource
}
type AddDataSourceCommand struct {
AccountId int64
Name string
Type DsType
Access DsAccess
Url string
Password string
User string
}