13 lines
294 B
C++
13 lines
294 B
C++
// SPDX-FileCopyrightText: 2024 Yury Gubich <blue@macaw.me>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
|
|
namespace Shared {
|
|
typedef std::vector<std::string> Strings;
|
|
typedef std::map<std::string, Strings> Permissions;
|
|
} |