Files
tessesframework/apps/ttimezone.cpp
Mike Nolan 3bce736834
Some checks failed
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-arm64:latest, aarch64-linux-gnu, arm64) (push) Successful in 2m37s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-arm:latest, arm-linux-gnueabihf, arm7) (push) Successful in 2m37s
Build and Deploy on Tag / 🔨 Build for PowerPC (push) Successful in 2m58s
Build and Deploy on Tag / 🔨 Build win32 and update the tap 🍺 (push) Failing after 3m36s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-riscv64:latest, riscv64-linux-gnu, riscv64) (push) Successful in 2m19s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-x64:latest, x86_64-linux-gnu, amd64) (push) Successful in 2m21s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-x86:latest, i386-linux-gnu, 386) (push) Successful in 2m6s
Fix license compliance and fix things up, add reverse proxy, fix some security flaws with HttpUtils
2026-08-31 20:57:18 -05:00

14 lines
522 B
C++

#include <TessesFramework/TessesFramework.hpp>
int main(int argc, char **argv) {
using namespace Tesses::Framework;
using namespace Tesses::Framework::TextStreams;
Tesses::Framework::TF_InitWithConsole();
StdOut() << "TimeZone Standard Offset: "
<< (int64_t)(Date::GetTimeZone() / 3600) << NewLine();
StdOut() << (Date::TimeZoneSupportDST() ? "TimeZone Supports DST"
: "TimeZone Doesn't Support DST")
<< NewLine();
return 0;
}