Changed backend from Rust to Go for fast development

This commit is contained in:
Patrick Alvin Alcala 2025-09-19 11:18:38 +08:00
parent ec263707c7
commit ebabe6a21c
8 changed files with 1615 additions and 3117 deletions

27
backend/static/index.html Normal file
View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OCBO e-Sign Server</title>
<style>
body {
background-color: #16212c;
}
.title {
font-family: 'Roboto', sans-serif;
width: 100%;
text-align: center;
margin: 0;
padding: 20px;
color: white;
font-size: 3.25rem;
}
</style>
</head>
<body>
<h1 class="title">OCBO e-Sign Server is running</h1>
</body>
</html>