/
githubmirror
/
strapi
Обзор
Документация
Войти
/
githubmirror
/
strapi
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/cli/cloud/src/services/context.ts
13 строк
244 B
Melo Ortega
fix: add missing userid to amplitude events
11 авг 2025, 13:39
11 авг 2025, 13:39
3780331
Код
Авторство
О чём код?
// This file will manage the CLI context state. import { CLIContext } from '../types'; let ctx: CLIContext; export function setContext(newCtx: CLIContext): void { ctx = newCtx; } export function getContext(): CLIContext { return ctx; }