[Swift-commit] r7043 - SwiftApps/gocat

ketan at ci.uchicago.edu ketan at ci.uchicago.edu
Sun Sep 8 19:31:55 CDT 2013


Author: ketan
Date: 2013-09-08 19:31:54 -0500 (Sun, 08 Sep 2013)
New Revision: 7043

Modified:
   SwiftApps/gocat/apps.swift
Log:
app defs

Modified: SwiftApps/gocat/apps.swift
===================================================================
--- SwiftApps/gocat/apps.swift	2013-09-08 07:51:00 UTC (rev 7042)
+++ SwiftApps/gocat/apps.swift	2013-09-09 00:31:54 UTC (rev 7043)
@@ -1,4 +1,19 @@
 type file;
 
-app () get_tags (){
+app (file catalogs, file err) get_all_catalogs (){
+    get_catalogs stdout=@catalogs stderr=@err;
 }
+
+app (file datasets, file err) get_all_datasets (string catalogid){
+    get_datasets catalogid stdout=@datasets stderr=@err;
+}
+
+app (file dataset_members, file err) get_dataset_members (string catalog_id, string dataset_id){
+    get_dataset_members catalog_id dataset_id stdout=@dataset_members stderr=@err;
+}
+
+app (file tags, file err) get_tags (string catalog_id, string dataset_id){
+    get_tags catalog_id dataset_id stdout=@tags stderr=@err;
+}
+
+




More information about the Swift-commit mailing list