← Back to team overview

crypto-social team mailing list archive

[Merge] lp:~darklinkxxxx/pgp-plus/trunk into lp:pgp-plus

 

DarkLinkXXXX has proposed merging lp:~darklinkxxxx/pgp-plus/trunk into lp:pgp-plus.

Requested reviews:
  Crypto Social (crypto-social)

For more details, see:
https://code.launchpad.net/~darklinkxxxx/pgp-plus/trunk/+merge/194783
-- 
https://code.launchpad.net/~darklinkxxxx/pgp-plus/trunk/+merge/194783
Your team Crypto Social is requested to review the proposed merge of lp:~darklinkxxxx/pgp-plus/trunk into lp:pgp-plus.
=== added file 'main.go'
--- main.go	1970-01-01 00:00:00 +0000
+++ main.go	2013-11-12 05:01:24 +0000
@@ -0,0 +1,7 @@
+package main
+
+import ("launchpad.net/pgp-plus/pgp")
+
+func main(){
+	
+}

=== added directory 'pgp'
=== added file 'pgp/pgp.go'
--- pgp/pgp.go	1970-01-01 00:00:00 +0000
+++ pgp/pgp.go	2013-11-12 05:01:24 +0000
@@ -0,0 +1,9 @@
+package pgp
+// Helper functions for dealing with the Gnu Privacy Gaurd, and maybe some other pgp software eventually.
+import ()
+//Gets pgp key from server.
+func GetFromServer(){}
+//Pushes pgp key to server.
+func PushKeyToServer(){}
+
+// etc. etc.

=== added directory 'web'
=== added file 'web/web.go'
--- web/web.go	1970-01-01 00:00:00 +0000
+++ web/web.go	2013-11-12 05:01:24 +0000
@@ -0,0 +1,3 @@
+package web
+
+import ()