Commit graph

7 commits

Author SHA1 Message Date
fox.cpp
bcceec4fe4
Extract several packages to form a public API 2020-07-15 01:31:06 +03:00
fox.cpp
fbcb2e4b00
pkg/cfgparser: Remove useless assignment 2020-03-06 04:22:59 +03:00
fox.cpp
18fc48c6e6
pkg/cfgparser: Require a new line after }
Makes the following configuration invalid:
aaa {
    bbb
} ccc

Previously it would have been parsed as:
aaa {
    bbb
}
ccc
2020-03-05 02:26:30 +03:00
fox.cpp
1579ea10b2
Use config.Node instead of *config.Node everywhere
Closes #197.
2020-03-05 02:26:29 +03:00
fox.cpp
c8768da05c
Clean unnecessry whitespace 2020-03-01 02:36:54 +03:00
fox.cpp
a5e4ed8031
Put a number of restrictions on directive names
This is important to keep syntax unambiguous
e.g. '{env:placeholder}' vs '{ env:placeholder }' (see #185).
2020-02-04 20:17:17 +03:00
fox.cpp
bf188e454f
Move most code from the repo root into subdirectories
The intention is to keep to repo root clean while the list of packages
is slowly growing.

Additionally, a bunch of small (~30 LoC) files in the repo root is
merged into a single maddy.go file, for the same reason.

Most of the internal code is moved into the internal/ directory. Go
toolchain will make it impossible to import these packages from external
applications.

Some packages are renamed and moved into the pkg/ directory in the root.
According to https://github.com/golang-standards/project-layout this is
the de-facto standard to place "library code that's ok to use by
external applications" in.

To clearly define the purpose of top-level directories, README.md files
are added to each.
2019-12-06 01:35:12 +03:00
Renamed from config/parser/parse.go (Browse further)