package
0.0.0-20200728072724-dbd1d1774f98
Repository: https://github.com/dikeert/linkman.git
Documentation: pkg.go.dev

# Functions

FromList creates new filtering condition for List field.This filtering condition allows only links whichList field matches provided filter string.
IncludeArchived creates new filtering condition for Archived field.This filtering condition allows links which have either true or falsevalue written into Archived field.
NewFilter creates new filter with specified conditions.
NoArchived creates new filtering condition for Archived field.This filtering condition only allows links that have falsevalue written into Archived field.
OnlyArchived creates new filtering condition for Archived field.This filtering condition only allows links that have truevalue written into Archived field.
OpenStore creates new Store for database locatedat provided path.
TitleNotEmpty creates new filtering condition for Title field.This filtering condition allows only links whichTitle field is not empty.
WithSource creates new filtering condition for Source field.This filtering conditions allows only links whichSource field matches provided source string.
WithTitle creates new filtering condition for Title field.This filtering condition allows only links whichTitle field contains provided title string.

# Structs

Link holds all the data associated with stored URL in the database.

# Interfaces

LinkFilter represents a filtering configuration for links.Such a filtering configuration is a result of combinationof several FilterConditions.
Store provides access to storage of Links.

# Type aliases

FilterCondition is a function that modifiesLinkFilter to filter out certain links.