From 13e1abd65a396d4c134ea3509655e097d8bcdce0 Mon Sep 17 00:00:00 2001 From: Nick Dumas Date: Tue, 13 Jun 2023 10:33:32 -0400 Subject: [PATCH] more condensing --- pipeline.go | 14 ++++++++++++++ posts.go | 15 --------------- 2 files changed, 14 insertions(+), 15 deletions(-) delete mode 100644 posts.go 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 -}