mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 19:22:37 +00:00
17 lines
233 B
C
17 lines
233 B
C
|
#pragma once
|
||
|
|
||
|
#include "td/actor/actor.h"
|
||
|
|
||
|
namespace ton {
|
||
|
|
||
|
namespace validator {
|
||
|
|
||
|
class LiteServerCache : public td::actor::Actor {
|
||
|
public:
|
||
|
virtual ~LiteServerCache() = default;
|
||
|
};
|
||
|
|
||
|
} // namespace validator
|
||
|
|
||
|
} // namespace ton
|