| 1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
|---|---|
| 2 | // |
| 3 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 4 | |
| 5 | #include "constants.h" |
| 6 | #include "config.h" |
| 7 | |
| 8 | QString version() |
| 9 | { |
| 10 | return VERSION; |
| 11 | } |
| 12 | |
| 13 | int default_max_char_count() |
| 14 | { |
| 15 | return 10000000; |
| 16 | } |
| 17 |