aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2023-04-14 16:54:25 +0200
committerThomas White <taw@physics.org>2024-02-06 16:59:34 +0100
commitd5270938d73200979d43a830fd0ba81eca229779 (patch)
treedec007c51127b96bb5def4ed65cb674c07730809
parentd216eda3fa9e5eb926c996c887e409d099f1ba02 (diff)
Julia: Switch to flat modules
-rw-r--r--julia/CrystFEL/src/CrystFEL.jl2
-rw-r--r--julia/CrystFEL/src/datatemplates.jl4
2 files changed, 0 insertions, 6 deletions
diff --git a/julia/CrystFEL/src/CrystFEL.jl b/julia/CrystFEL/src/CrystFEL.jl
index 0ef197c0..e754a310 100644
--- a/julia/CrystFEL/src/CrystFEL.jl
+++ b/julia/CrystFEL/src/CrystFEL.jl
@@ -1,7 +1,5 @@
module CrystFEL
include("datatemplates.jl")
-using .DataTemplates
-export DataTemplate, loaddatatemplate
end # module CrystFEL
diff --git a/julia/CrystFEL/src/datatemplates.jl b/julia/CrystFEL/src/datatemplates.jl
index 1357acb6..c72a6c43 100644
--- a/julia/CrystFEL/src/datatemplates.jl
+++ b/julia/CrystFEL/src/datatemplates.jl
@@ -1,5 +1,3 @@
-module DataTemplates
-
export DataTemplate, loaddatatemplate
mutable struct InternalDataTemplate end
@@ -25,5 +23,3 @@ function loaddatatemplate(filename::AbstractString)
return dt
end
-
-end