Add embedded gists & JSON gist data/metadata (#179)

هذا الالتزام موجود في:
Thomas Miceli
2023-12-21 20:00:04 +01:00
الأصل 845e28dd59
التزام 0753c5cb54
32 ملفات معدلة مع 872 إضافات و60 حذوفات

عرض الملف

@@ -11,13 +11,14 @@ import (
)
type File struct {
Filename string
Size string
OldFilename string
Content string
Truncated bool
IsCreated bool
IsDeleted bool
Filename string `json:"filename"`
Size uint64 `json:"size"`
HumanSize string `json:"human_size"`
OldFilename string `json:"-"`
Content string `json:"content"`
Truncated bool `json:"truncated"`
IsCreated bool `json:"-"`
IsDeleted bool `json:"-"`
}
type CsvFile struct {