Просмотр исходного кода

Add an application resource file.

Tim Fletcher 16 лет назад
Родитель
Сommit
b65f952ce6
1 измененных файлов с 20 добавлено и 0 удалено
  1. 20 0
      src/oauth.app

+ 20 - 0
src/oauth.app

@@ -0,0 +1,20 @@
+{application, oauth, [
+  {description, "Erlang OAuth implementation"},
+  {modules, [
+    oauth,
+    oauth_hmac_sha1,
+    oauth_http,
+    oauth_plaintext,
+    oauth_rsa_sha1,
+    oauth_signature,
+    oauth_unix,
+    oauth_uri
+  ]},
+  {registered, []},
+  {applications, [
+    kernel,
+    stdlib,
+    crypto,
+    inets
+  ]}
+]}.