blob: 70eea40a72c35e1e32853609f189a76869ac33ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: status.hh
// Description: Respond to client bothering
#ifndef SERVER_STATUS_HH
#define SERVER_STATUS_HH
#pragma once
namespace status
{
void init(void);
} // namespace status
#endif
|