(text: string)
| 50 | |
| 51 | 示例: |
| 52 | <code>${commandName} https://twitter.com/user/status/123</code> |
| 53 | <code>${commandName} https://www.instagram.com/p/xxxx/</code> |
| 54 | `.trim(); |
| 55 | |
| 56 | let hasStartedBot = false; |
| 57 | let firstRunPreStartLastId = 0; |
| 58 | let shouldIgnoreNextBotMessage = false; |
| 59 | |
| 60 | type InitState = { |
| 61 | initialized: boolean; |
| 62 | ignoredUpToId?: number; |
| 63 | }; |
| 64 | |
| 65 | const STATE_DIR = createDirectoryInAssets(pluginName); |
| 66 | const STATE_PATH = path.join(STATE_DIR, "state.json"); |