Some comments
This commit is contained in:
parent
d7f7f547e4
commit
48be035341
|
@ -1,3 +1,5 @@
|
|||
# Handles user management. And hopefully stuff like proper password hashing at some point in the future.
|
||||
|
||||
import db
|
||||
import formatter
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This is what ACTUALLY starts the blog
|
||||
|
||||
import prologue
|
||||
import prologue/middlewares/staticfile
|
||||
import views
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# Handles formatting of text and outputting of log messages
|
||||
|
||||
import tables
|
||||
import strutils
|
||||
import math
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# View definition where the fuctions for prologue will all be stashed
|
||||
|
||||
import prologue
|
||||
import nimja/parser
|
||||
import formatter
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This module mostly handles startup/config checks and then passes itself onwards
|
||||
|
||||
when isMainModule:
|
||||
import tables
|
||||
import os
|
||||
|
|
Loading…
Reference in New Issue