add document state transformer interface
Some checks are pending
Lint / golangci-lint (push) Waiting to run
Declarative Tests / test (push) Waiting to run
Declarative Tests / build-fedora (push) Waiting to run
Declarative Tests / build-ubuntu-focal (push) Waiting to run

This commit is contained in:
Matthew Rich 2024-09-25 04:55:40 +00:00
parent f1a56b0968
commit 7440fc2610

View File

@ -48,7 +48,7 @@ func (s StringContentReadWriter) ContentReaderStream() (*transport.Reader, error
return r.(*transport.Reader), e return r.(*transport.Reader), e
} }
func (s StringContentReadWriter) Apply() error { return nil } func (s StringContentReadWriter) Apply(string) error { return nil }
func (s StringContentReadWriter) Clone() data.Declaration { return nil } func (s StringContentReadWriter) Clone() data.Declaration { return nil }
func (s StringContentReadWriter) Load(docData []byte, f codec.Format) (err error) { return } func (s StringContentReadWriter) Load(docData []byte, f codec.Format) (err error) { return }
func (s StringContentReadWriter) LoadReader(r io.ReadCloser, f codec.Format) (err error) { return } func (s StringContentReadWriter) LoadReader(r io.ReadCloser, f codec.Format) (err error) { return }