mirror of
https://github.com/daylinmorgan/bbansi.git
synced 2024-11-21 17:00:44 -06:00
refactor: tables don't need to be public
This commit is contained in:
parent
45e23dc1c5
commit
ad53d89eb9
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ import std/[strtabs, strutils]
|
||||||
let bbReset* = "\e[0m"
|
let bbReset* = "\e[0m"
|
||||||
|
|
||||||
let
|
let
|
||||||
bbStyles* = {
|
bbStyles = {
|
||||||
"bold": "1",
|
"bold": "1",
|
||||||
"b": "1",
|
"b": "1",
|
||||||
"faint": "2",
|
"faint": "2",
|
||||||
|
@ -17,7 +17,7 @@ let
|
||||||
"strike": "9",
|
"strike": "9",
|
||||||
}.newStringTable(modeCaseInsensitive)
|
}.newStringTable(modeCaseInsensitive)
|
||||||
|
|
||||||
bbColors* = {
|
bbColors = {
|
||||||
"black": "0",
|
"black": "0",
|
||||||
"red": "1",
|
"red": "1",
|
||||||
"green": "2",
|
"green": "2",
|
||||||
|
|
Loading…
Reference in a new issue