-
Notifications
You must be signed in to change notification settings - Fork 213
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update dependencies and refactor transporter package for impro…
…ved performance and readability (#369)
- Loading branch information
Showing
9 changed files
with
273 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,3 +28,4 @@ cmd/test/ | |
localdev/ | ||
|
||
.vscode/settings.json | ||
.zed/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<head> | ||
<title>Ehco Web</title> | ||
<meta charset="UTF-8" /> | ||
<meta name="description" content="ehco web" /> | ||
<meta name="keywords" content="ehco-relay" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/1.0.1/css/bulma.min.css" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.6.13/flatpickr.min.css" /> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.6.13/flatpickr.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/4.4.1/chart.umd.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | ||
</head> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<nav class="navbar" role="navigation" aria-label="main navigation"> | ||
<div class="container"> | ||
<div class="navbar-brand"> | ||
<a class="navbar-item" href="/"> | ||
<h1 class="title is-4">Ehco Relay</h1> | ||
</a> | ||
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false"> | ||
<span aria-hidden="true"></span> | ||
<span aria-hidden="true"></span> | ||
<span aria-hidden="true"></span> | ||
<span aria-hidden="true"></span> | ||
</a> | ||
</div> | ||
|
||
<div class="navbar-menu"> | ||
<div class="navbar-start"> | ||
<a href="/rules/" class="navbar-item"> | ||
<span class="icon"><i class="fas fa-list"></i></span> | ||
<span>Rule List</span> | ||
</a> | ||
<div class="navbar-item has-dropdown is-hoverable"> | ||
<a class="navbar-link"> | ||
<span class="icon"><i class="fas fa-link"></i></span> | ||
<span>Connections</span> | ||
</a> | ||
<div class="navbar-dropdown"> | ||
<a href="/connections/?conn_type=active" class="navbar-item">Active</a> | ||
<a href="/connections/?conn_type=closed" class="navbar-item">Closed</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="navbar-end"> | ||
<div class="navbar-item has-dropdown is-hoverable"> | ||
<a class="navbar-link"> | ||
<span class="icon"><i class="fas fa-external-link-alt"></i></span> | ||
<span>Quick Links</span> | ||
</a> | ||
<div class="navbar-dropdown"> | ||
<a href="/metrics/" class="navbar-item"> | ||
<span class="icon"><i class="fas fa-chart-line"></i></span> | ||
<span>Metrics</span> | ||
</a> | ||
<a href="/debug/pprof/" class="navbar-item"> | ||
<span class="icon"><i class="fas fa-bug"></i></span> | ||
<span>Debug</span> | ||
</a> | ||
<a href="/api/v1/config/" class="navbar-item"> | ||
<span class="icon"><i class="fas fa-cog"></i></span> | ||
<span>Config</span> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</nav> | ||
<hr /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.