mirror of
https://github.com/kopia/kopia.git
synced 2026-03-11 18:56:28 -04:00
* refactor(repository): moved format blob management to separate package This is completely mechanical, no behavior changes, only: - moved types and functions to a new package - adjusted visibility where needed - added missing godoc - renamed some identifiers to align with current usage - mechanically converted some top-level functions into member functions - fixed some mis-named variables * refactor(repository): moved content.FormatingOptions to format.ContentFormat
7 lines
212 B
Go
7 lines
212 B
Go
package format
|
|
|
|
// ObjectFormat describes the format of objects in a repository.
|
|
type ObjectFormat struct {
|
|
Splitter string `json:"splitter,omitempty"` // splitter used to break objects into pieces of content
|
|
}
|