19 lines
619 B
D
19 lines
619 B
D
// Written in the D programming language.
|
|
|
|
/**
|
|
*
|
|
* Tom's Obvious, Minimal Language (v1.0.0).
|
|
*
|
|
* License: $(HTTP https://github.com/Kripth/toml/blob/master/LICENSE, MIT)
|
|
* Authors: Kripth
|
|
* References: $(LINK https://github.com/toml-lang/toml/blob/master/README.md)
|
|
* Source: $(HTTP https://github.com/Kripth/toml/blob/master/src/toml/package.d, toml/_package.d)
|
|
*
|
|
*/
|
|
module toml;
|
|
|
|
public import std.datetime : SysTime, Date;
|
|
|
|
public import toml.datetime : DateTime, TimeOfDay;
|
|
public import toml.toml : TOMLOptions, TOMLType, TOML_TYPE, TOMLDocument, TOMLValue, parseTOML, TOMLException, TOMLParserException;
|