forked from Drop-OSS/archived-drop-app
9 lines
270 B
TypeScript
9 lines
270 B
TypeScript
import { type DownloadableMetadata, DownloadableType } from '~/types'
|
|
|
|
export default function generateGameMeta(gameId: string, version: string): DownloadableMetadata {
|
|
return {
|
|
id: gameId,
|
|
version,
|
|
downloadType: DownloadableType.Game
|
|
}
|
|
} |