Skip to content

Commit

Permalink
Remove re-exports (#6)
Browse files Browse the repository at this point in the history
* Remove re-exports

* Fix tests and Project.toml

Co-authored-by: ScottPJones <[email protected]>
  • Loading branch information
Eric Forgy and ScottPJones authored Jun 5, 2020
1 parent e003c5d commit a063a0f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ authors = ["Eric Forgy <[email protected]>", "ScottPJones <scottjones@alum.
keywords = ["Finance", "Asset"]
license = "MIT"
uuid = "821ac057-2368-47e2-a1d8-2c0798f0e233"
version = "0.2.0"
version = "0.3.0"

[deps]
FixedPointDecimals = "fb4d412d-6eee-574d-9565-ede6634db7b0"
Currencies = "0fd90b74-7c1f-579e-9252-02cd883047b9"
Instruments = "2a4f3d17-849a-48a1-809e-d780c70a95a0"

[extras]
Expand Down
5 changes: 1 addition & 4 deletions src/Assets.jl
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
module Assets

using Instruments
using Currencies, Instruments, FixedPointDecimals
using Instruments: currency, symbol
import Instruments: unit, code, name

using FixedPointDecimals

export Cash, ListedEquity
export Currencies, Currency, Position, FixedDecimal

"""
`Cash` is a financial instrument represented by a singleton type with its currency symbol and the number of digits in the minor units, typically 0, 2, or 3, as parameters.
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Assets
using Currencies, Instruments, Assets, FixedPointDecimals
import Assets: USD, EUR, JPY, JOD, CNY
import Assets: currency, symbol, unit, code, name

Expand Down

0 comments on commit a063a0f

Please sign in to comment.