converge/pkg/server/templates/sessions.templ
Erik Brakkee 882f97fa17 many small changes
* removed the Async utility
* now using Ping message to webclient for keep alive instaed of actual content
* added remote shell to AgentInfo
* retry of connections to the agent
* better logging for SynchronizeStreams
2024-09-08 11:16:49 +02:00

20 lines
251 B
Plaintext

package templates
templ Sessions() {
<div hx-ext="ws" ws-connect="/ws/sessions">
<h1>sessions</h1>
<div id="mycontent">
Loading...
</div>
</div>
}
templ SessionsTab() {
@BasePage(4) {
@Sessions()
}
}