19 lines
505 B
Go
19 lines
505 B
Go
package exporter
|
|
|
|
import (
|
|
"github.com/anytypeio/any-sync/commonspace/object/acl/liststorage"
|
|
"github.com/anytypeio/any-sync/commonspace/object/tree/objecttree"
|
|
"github.com/anytypeio/any-sync/commonspace/object/tree/treestorage"
|
|
)
|
|
|
|
type TreeImportParams struct {
|
|
ListStorage liststorage.ListStorage
|
|
TreeStorage treestorage.TreeStorage
|
|
BeforeId string
|
|
IncludeBeforeId bool
|
|
}
|
|
|
|
func ImportHistoryTree(params TreeImportParams) (objecttree.ReadableObjectTree, error) {
|
|
return nil, nil
|
|
}
|