diff options
author | stuebinm | 2024-07-21 17:55:36 +0200 |
---|---|---|
committer | stuebinm | 2024-07-21 17:55:36 +0200 |
commit | b8df907e76b8ac7cdf59b26f0e75a477d926f122 (patch) | |
tree | 8e01c42c992ed2f313837e337aff06fbf5c38083 /src/Conftrack/Source/Trivial.hs | |
parent | 16575597093923ac46839128b2676da92496d598 (diff) |
document publicly exposed interface
this documents most functions that might be used by downstream consumers
of this library, except for those in Conftrack.Pretty, which aren't done
yet.
Diffstat (limited to 'src/Conftrack/Source/Trivial.hs')
-rw-r--r-- | src/Conftrack/Source/Trivial.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Conftrack/Source/Trivial.hs b/src/Conftrack/Source/Trivial.hs index d4151c2..842ca46 100644 --- a/src/Conftrack/Source/Trivial.hs +++ b/src/Conftrack/Source/Trivial.hs @@ -5,6 +5,7 @@ {-# LANGUAGE AllowAmbiguousTypes #-} {-# LANGUAGE OverloadedStrings #-} +-- | A trivial source reading from a @Map Key Value@, only useful as a demonstration or for tests. module Conftrack.Source.Trivial where import Conftrack.Value (Key, Value(..), ConfigError(..)) |