c2b10347b1
- Removed rust-service/, c-runtime/, kafka stubs - Generic Store[T] pattern with real tests - Slimmed main.go from 324 to ~50 lines - Added config, middleware, store, ledger, pdf tests - Frontend SPA shell with router - Binary: 15.5MB -> 12MB
17 lines
441 B
HTML
17 lines
441 B
HTML
<!DOCTYPE html>
|
|
<html lang="sv">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>BOC — Business Operations Center</title>
|
|
<link rel="stylesheet" href="assets/boc.css">
|
|
</head>
|
|
<body>
|
|
<div class="app">
|
|
<aside class="sidebar" id="sidebar"></aside>
|
|
<main class="main" id="app"></main>
|
|
</div>
|
|
<script type="module" src="assets/app.js"></script>
|
|
</body>
|
|
</html>
|