add Geef.Config module for Elixir

This commit is contained in:
Ramon Snir
2015-07-18 14:24:15 +03:00
committed by Carlos Martín Nieto
parent 8c39463095
commit 01254f2f90
6 changed files with 76 additions and 9 deletions

View File

@@ -2,17 +2,20 @@ defmodule Geef do
defmacro __using__(_) do
quote do
alias Geef.Repository
alias Geef.Blob
alias Geef.Commit
alias Geef.Config
alias Geef.Index
alias Geef.Index.Tree
alias Geef.Object
alias Geef.Odb
alias Geef.Oid
alias Geef.Reference
alias Geef.Object
alias Geef.Commit
alias Geef.Tree
alias Geef.TreeEntry
alias Geef.Blob
alias Geef.Tag
alias Geef.Repository
alias Geef.Signature
alias Geef.Tree
alias Geef.Tag
alias Geef.TreeEntry
end
end