[WIP] Added moduledocs
This commit is contained in:
parent
a202652c00
commit
abe559c41b
3 changed files with 18 additions and 0 deletions
|
|
@ -1,4 +1,10 @@
|
||||||
defmodule Pinchflat.Downloading.DownloadingHelpers do
|
defmodule Pinchflat.Downloading.DownloadingHelpers do
|
||||||
|
@moduledoc """
|
||||||
|
Methods for helping download media
|
||||||
|
|
||||||
|
Many of these methods are made to be kickoff or be consumed by workers.
|
||||||
|
"""
|
||||||
|
|
||||||
require Logger
|
require Logger
|
||||||
|
|
||||||
alias Pinchflat.Media
|
alias Pinchflat.Media
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,10 @@
|
||||||
defmodule Pinchflat.FastIndexing.FastIndexingHelpers do
|
defmodule Pinchflat.FastIndexing.FastIndexingHelpers do
|
||||||
|
@moduledoc """
|
||||||
|
Methods for performing fast indexing tasks and managing the fast indexing process.
|
||||||
|
|
||||||
|
Many of these methods are made to be kickoff or be consumed by workers.
|
||||||
|
"""
|
||||||
|
|
||||||
alias Pinchflat.Media
|
alias Pinchflat.Media
|
||||||
alias Pinchflat.Tasks
|
alias Pinchflat.Tasks
|
||||||
alias Pinchflat.Sources.Source
|
alias Pinchflat.Sources.Source
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,10 @@
|
||||||
defmodule Pinchflat.SlowIndexing.SlowIndexingHelpers do
|
defmodule Pinchflat.SlowIndexing.SlowIndexingHelpers do
|
||||||
|
@moduledoc """
|
||||||
|
Methods for performing slow indexing tasks and managing the indexing process.
|
||||||
|
|
||||||
|
Many of these methods are made to be kickoff or be consumed by workers.
|
||||||
|
"""
|
||||||
|
|
||||||
require Logger
|
require Logger
|
||||||
|
|
||||||
alias Pinchflat.Media
|
alias Pinchflat.Media
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue