retrait de quelques erreurs

This commit is contained in:
bruno 2022-11-10 23:16:14 -05:00
parent ede365af7d
commit 2b606f9010
1 changed files with 13 additions and 1 deletions

View File

@ -42,6 +42,18 @@ type DashbordData* = object
hotkey*: seq[string]
color*: seq[string]
# --==--==--==--==--==--==--==--==--==--==-- #
# Setup user data
# --==--==--==--==--==--==--==--==--==--==-- #
type
TData* = ref object of RootObj
loggedIn*: bool
userid*, username*, userpass*, email*: string
notification*: int
req*: Request
# --==--==--==--==--==--==--==--==--==--==-- #
# TYPE : Data Informations for Left Colomn
# --==--==--==--==--==--==--==--==--==--==-- #
@ -75,7 +87,7 @@ type ColomnRightData* = ref object of RootObj
proc getDashbordData*(): Future[DashbordData] {.async.} =
var ddata: DashbordData
var tagslist: seq[string]
var tagslist: seq[string]
let
data = parseExcel("data/dashbord.xlsx", header = true)