Some small cleanup
This commit is contained in:
parent
caab61ddb8
commit
f7b67f6d09
2 changed files with 7 additions and 10 deletions
11
source/app.d
11
source/app.d
|
@ -1,10 +1,9 @@
|
|||
import std.getopt : defaultGetoptPrinter, getopt;
|
||||
import std.stdio : File, stdout, writeln;
|
||||
import std.datetime : Clock;
|
||||
import std.json : JSONValue;
|
||||
import std.format : format;
|
||||
import std.array: array, replace;
|
||||
|
||||
import std.datetime : Clock;
|
||||
import std.format : format;
|
||||
import std.getopt : defaultGetoptPrinter, getopt;
|
||||
import std.json : JSONValue;
|
||||
import std.stdio : File, writeln;
|
||||
|
||||
import requests : postContent;
|
||||
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
module fahrplanparser;
|
||||
|
||||
private:
|
||||
|
||||
import std.algorithm : filter, map, startsWith;
|
||||
import std.algorithm : filter, map;
|
||||
import std.array : empty, front, replace;
|
||||
import std.conv : to;
|
||||
import std.datetime : dur, TimeOfDay, Clock;
|
||||
import std.datetime : dur, TimeOfDay;
|
||||
import std.regex : ctRegex, matchAll;
|
||||
import std.string : strip;
|
||||
import std.typecons : tuple;
|
||||
|
|
Loading…
Reference in a new issue