mirror of
https://github.com/logos-messaging/nim-chat-sdk.git
synced 2026-01-16 04:53:08 +00:00
13 lines
415 B
Nim
13 lines
415 B
Nim
# This is just an example to get you started. Users of your library will
|
|
# import this file by writing ``import chat_sdk/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")
|