mirror of
https://github.com/phin05/discord-rich-presence-plex
synced 2024-11-22 01:23:02 +00:00
14 lines
322 B
Python
14 lines
322 B
Python
import os
|
|
import sys
|
|
|
|
name = "Discord Rich Presence for Plex"
|
|
version = "2.2.5"
|
|
|
|
plexClientID = "discord-rich-presence-plex"
|
|
discordClientID = "413407336082833418"
|
|
configFilePath = "config.json"
|
|
cacheFilePath = "cache.json"
|
|
logFilePath = "console.log"
|
|
|
|
isUnix = sys.platform in ["linux", "darwin"]
|
|
processID = os.getpid()
|