diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2022-04-24 18:53:32 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2022-04-24 18:53:32 +0200 |
commit | 79d3c2bfd95c5cb0ac6e4a3f97156161d792c676 (patch) | |
tree | cbfd034a362666b8dab842d3afed18cf95124ede /internal/feed/template/template.go | |
parent | 7822c9d443458ae9d1d9d678e279bfc516da7a8f (diff) | |
download | feed2imap-go-79d3c2bfd95c5cb0ac6e4a3f97156161d792c676.tar.gz feed2imap-go-79d3c2bfd95c5cb0ac6e4a3f97156161d792c676.tar.bz2 feed2imap-go-79d3c2bfd95c5cb0ac6e4a3f97156161d792c676.zip |
Replace `interface{}` by `any`
Diffstat (limited to '')
-rw-r--r-- | internal/feed/template/template.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/feed/template/template.go b/internal/feed/template/template.go index d66a8e4..4f17717 100644 --- a/internal/feed/template/template.go +++ b/internal/feed/template/template.go @@ -14,7 +14,7 @@ import ( ) type template interface { - Execute(wr io.Writer, data interface{}) error + Execute(wr io.Writer, data any) error Name() string } |