Noah Petherbridge
2b42a072a0
* All private Doodle source code into the pkg/ folder. * Potentially public code into the lib/ folder. * Centralize the logger into a subpackage.
10 lines
211 B
Go
10 lines
211 B
Go
package level
|
|
|
|
// FileSystem embeds a map of files inside a parent drawing.
|
|
type FileSystem map[string]File
|
|
|
|
// File holds details about a file in the FileSystem.
|
|
type File struct {
|
|
Data []byte `json:"data"`
|
|
}
|