#pragma once
class AppService
{
public:
virtual void init() = 0;
virtual ~AppService() = default;
};