Webhook Discord

This commit is contained in:
2026-07-02 18:38:04 +02:00
parent 34fe0b461e
commit 3505bc149d
10 changed files with 171 additions and 1 deletions

7
utils/appInfoHeaders.ts Normal file
View File

@@ -0,0 +1,7 @@
import { Platform } from 'react-native';
import Constants from 'expo-constants';
export const getAppInfoHeaders = (): Record<string, string> => ({
'X-App-Platform': Platform.OS,
'X-App-Version': Constants.expoConfig?.version ?? 'unknown',
});