blob: 3bb609cbb22e149256856942da48e04aa957252a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <util/generic/string.h>
namespace NSQLComplete {
struct TCompletionInput {
TStringBuf Text;
size_t CursorPosition = Text.length();
};
} // namespace NSQLComplete
|