From 705435f0810db90d38e231e9762ac7d1b769caaf Mon Sep 17 00:00:00 2001 From: Baptiste Parmantier Date: Fri, 24 Jan 2025 18:18:14 +0100 Subject: [PATCH] feat: change environment key names --- lib/src/domain/commands/project_setups/preset.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/domain/commands/project_setups/preset.dart b/lib/src/domain/commands/project_setups/preset.dart index edd2abf..9610099 100644 --- a/lib/src/domain/commands/project_setups/preset.dart +++ b/lib/src/domain/commands/project_setups/preset.dart @@ -67,8 +67,8 @@ mixin CreateProjectTools { final baseBuffer = StringBuffer() ..writeln('DART_ENV=development') - ..writeln('HTTP_VERSION=10') - ..writeln('WSS_VERSION=10') + ..writeln('DISCORD_REST_API_VERSION=10') + ..writeln('DISCORD_WS_VERSION=10') ..writeln('INTENT=3276799') ..writeln('LOG_LEVEL=$logLevel');