16 lines
345 B
C++
16 lines
345 B
C++
// _____ _ _____
|
|
// |_ _|____ _| ||_ _|_ __
|
|
// | |/ _ \ \/ / __|| | \ \ / /
|
|
// | | __/> <| |_ | | \ V /
|
|
// |_|\___/_/\_\\__||_| \_/
|
|
// Author: Love Billenius <lovebillenius@disroot.org>
|
|
// License: GPL-3
|
|
|
|
#include "Page.hpp"
|
|
#include "Tui.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
Tui tui = Page();
|
|
tui.run();
|
|
}
|