4e54075078
CI / test (push) Has been cancelled
CI / verify (push) Has been cancelled
Clients CI / build-server (push) Has been cancelled
Clients CI / test-python (push) Has been cancelled
Clients CI / test-javascript (push) Has been cancelled
Clients CI / test-nim (push) Has been cancelled
Clients CI / test-rust (push) Has been cancelled
11 lines
152 B
Nim
11 lines
152 B
Nim
type
|
|
User* = tuple[
|
|
username: string,
|
|
following: seq[string]
|
|
]
|
|
|
|
Message* = tuple[
|
|
username: string,
|
|
time: int,
|
|
msg: string
|
|
] |