first commit

This commit is contained in:
2026-01-12 11:28:31 -06:00
commit 66463236cc
6 changed files with 156 additions and 0 deletions

15
include/env.hpp Normal file
View File

@@ -0,0 +1,15 @@
#pragma once
#include <expected>
#include <string>
#include <map>
class Env {
public:
Env();
void loadEnv(const std::string& cwd);
std::expected<std::string, std::string> get(const std::string& key);
private:
std::map<std::string, std::string> map_;
};