#pragma once namespace clickhouse { template T* Singleton() { static T instance; return &instance; } }