diff --git a/pipeline.go b/pipeline.go index b890dff..537f2a6 100644 --- a/pipeline.go +++ b/pipeline.go @@ -192,3 +192,17 @@ func (p *Pipeline) MoveAttachments(post string) error { return nil } + +func (p *Pipeline) FindPosts() error { + return nil +} + +func (p *Pipeline) SanitizePost(post string) error { + + return nil +} + +func (p *Pipeline) CopyPost(post string) error { + + return nil +} diff --git a/posts.go b/posts.go deleted file mode 100644 index 8258ac8..0000000 --- a/posts.go +++ /dev/null @@ -1,15 +0,0 @@ -package obp - -func (p *Pipeline) FindPosts() error { - return nil -} - -func (p *Pipeline) SanitizePost(post string) error { - - return nil -} - -func (p *Pipeline) CopyPost(post string) error { - - return nil -}