mirror of
https://github.com/Drop-OSS/drop
synced 2026-08-27 14:23:05 -04:00
14 lines
279 B
TypeScript
14 lines
279 B
TypeScript
import { Platform } from "@prisma/client";
|
|
|
|
export function parsePlatform(platform: string) {
|
|
switch (platform) {
|
|
case "linux":
|
|
case "Linux":
|
|
return Platform.Linux;
|
|
case "windows":
|
|
case "Windows":
|
|
return Platform.Windows;
|
|
}
|
|
|
|
return undefined;
|
|
}
|