Initial implementation.

This commit is contained in:
2022-01-13 14:12:10 -06:00
parent 3222260baa
commit 5f21b2f263
4 changed files with 28 additions and 31 deletions

View File

@ -1,12 +0,0 @@
# This is just an example to get you started. Users of your library will
# import this file by writing ``import namespaced_logging/submodule``. Feel free to rename or
# remove this file altogether. You may create additional modules alongside
# this file as required.
type
Submodule* = object
name*: string
proc initSubmodule*(): Submodule =
## Initialises a new ``Submodule`` object.
Submodule(name: "Anonymous")