mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-11 18:35:46 +02:00
16 lines
234 B
C++
16 lines
234 B
C++
// Copyright 2021, Roman Gershman. All rights reserved.
|
|
// See LICENSE for licensing terms.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace dfly {
|
|
|
|
enum class Protocol : uint8_t {
|
|
MEMCACHE = 1,
|
|
REDIS = 2
|
|
};
|
|
|
|
} // namespace dfly
|