Files
lunch-games/source/toml/package.d
2025-04-29 01:59:15 +02:00

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;