Some comments

This commit is contained in:
Quad 2022-05-13 17:01:32 +02:00
parent d7f7f547e4
commit 48be035341
6 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,5 @@
# Handles user management. And hopefully stuff like proper password hashing at some point in the future.
import db
import formatter

View File

@ -1,3 +1,5 @@
# This is what ACTUALLY starts the blog
import prologue
import prologue/middlewares/staticfile
import views

View File

@ -1,3 +1,5 @@
# Everything related to database reads and writes goes in this file
import tables
import std/[os, db_sqlite, strutils, streams]
import formatter

View File

@ -1,3 +1,5 @@
# Handles formatting of text and outputting of log messages
import tables
import strutils
import math

View File

@ -1,3 +1,5 @@
# View definition where the fuctions for prologue will all be stashed
import prologue
import nimja/parser
import formatter

View File

@ -1,3 +1,5 @@
# This module mostly handles startup/config checks and then passes itself onwards
when isMainModule:
import tables
import os