From cc81a4f2f39ac5ddf2320e54f1c1f3e1204cf43a Mon Sep 17 00:00:00 2001 From: Dillon Kearns Date: Wed, 26 Jan 2022 10:45:43 -0800 Subject: [PATCH] Remove unused. --- examples/docs/src/DocsSection.elm | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/examples/docs/src/DocsSection.elm b/examples/docs/src/DocsSection.elm index 8d3a519f..c6cbabba 100644 --- a/examples/docs/src/DocsSection.elm +++ b/examples/docs/src/DocsSection.elm @@ -1,6 +1,5 @@ -module DocsSection exposing (Section, all, codec) +module DocsSection exposing (Section, all) -import Codec exposing (Codec) import DataSource exposing (DataSource) import DataSource.Glob as Glob @@ -12,16 +11,6 @@ type alias Section = } -codec : Codec (List Section) -codec = - Codec.object Section - |> Codec.field "filePath" .filePath Codec.string - |> Codec.field "order" .order Codec.int - |> Codec.field "slug" .slug Codec.string - |> Codec.buildObject - |> Codec.list - - all : DataSource (List Section) all = Glob.succeed Section