1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-11 17:42:48 +00:00

UI done for video archiving

This commit is contained in:
2018-08-23 00:07:08 -05:00
parent 5a542e0ffb
commit 94bac26903
30 changed files with 393 additions and 68 deletions

View File

@@ -1,2 +1,3 @@
export * from './claims';
export * from './permissions';
export * from './video-archive';

View File

@@ -0,0 +1,13 @@
export interface IVideoArchive {
author: string;
created_at: string;
date_published: string;
description: string;
duration: number;
id: number;
title: string;
updated_at: string;
uploaded_by: string;
url: string;
youtube_id: string;
}