mirror of
https://github.com/YuzuZensai/Discord-Presence-Relay.git
synced 2026-09-14 01:08:50 +00:00
✨ feat: initial commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import { PosixPlatform } from './posix'
|
||||
import { UnsupportedPlatform } from './unsupported'
|
||||
import type { RelayPlatform } from './types'
|
||||
|
||||
export type { ClaimedSocket, ProcessInfo, RelayPlatform } from './types'
|
||||
|
||||
export const platform: RelayPlatform =
|
||||
process.platform === 'win32' ? new UnsupportedPlatform() : new PosixPlatform()
|
||||
Reference in New Issue
Block a user