Skip to content

Commit

Permalink
REFACTOR: Reexport all top-level modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
epatters committed Jun 9, 2023
1 parent 204865d commit b557069
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/Catlab.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,19 @@ using Reexport

include("gats/GATs.jl")
include("theories/Theories.jl")

include("categorical_algebra/ACSetsGATsInterop.jl")
include("graphs/Graphs.jl")
include("categorical_algebra/CategoricalAlgebra.jl")

include("wiring_diagrams/WiringDiagrams.jl")
include("graphics/Graphics.jl")
include("programs/Programs.jl")

@reexport using .GATs
@reexport using .Theories
@reexport using .Graphs
@reexport using .CategoricalAlgebra
@reexport using .WiringDiagrams
@reexport using .Graphics
@reexport using .Programs

end

0 comments on commit b557069

Please sign in to comment.