diff options
Diffstat (limited to 'org/out_zip.org')
-rw-r--r-- | org/out_zip.org | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/org/out_zip.org b/org/out_zip.org index 5bd503b..5ffd1ae 100644 --- a/org/out_zip.org +++ b/org/out_zip.org @@ -28,11 +28,10 @@ module sisudoc.io_out.create_zip_file; @safe: template createZipFile() { - import - std.file, - std.outbuffer, - std.string, - std.zip; + import std.file; + import std.outbuffer; + import std.string; + import std.zip; void createZipFile( string zip_file_name, void[] compressed_zip_data, |