Some small cleanup

This commit is contained in:
Johannes Loher 2016-12-29 18:43:54 +01:00
parent caab61ddb8
commit f7b67f6d09
2 changed files with 7 additions and 10 deletions

View File

@ -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;

View File

@ -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;