Home Download Docs Code Community
     1	/*
     2	Copyright 2014 The Perkeep Authors.
     3	
     4	Licensed under the Apache License, Version 2.0 (the "License");
     5	you may not use this file except in compliance with the License.
     6	You may obtain a copy of the License at
     7	
     8	     http://www.apache.org/licenses/LICENSE-2.0
     9	
    10	Unless required by applicable law or agreed to in writing, software
    11	distributed under the License is distributed on an "AS IS" BASIS,
    12	WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13	See the License for the specific language governing permissions and
    14	limitations under the License.
    15	*/
    16	
    17	// Package allimporters registers all the importer implementations.
    18	package allimporters // import "perkeep.org/pkg/importer/allimporters"
    19	
    20	import (
    21		"perkeep.org/pkg/importer"
    22		_ "perkeep.org/pkg/importer/dummy"
    23		_ "perkeep.org/pkg/importer/feed"
    24		_ "perkeep.org/pkg/importer/flickr"
    25		_ "perkeep.org/pkg/importer/gphotos"
    26		_ "perkeep.org/pkg/importer/instapaper"
    27		_ "perkeep.org/pkg/importer/mastodon"
    28		_ "perkeep.org/pkg/importer/picasa"
    29		_ "perkeep.org/pkg/importer/pinboard"
    30		_ "perkeep.org/pkg/importer/plaid"
    31		_ "perkeep.org/pkg/importer/swarm"
    32		_ "perkeep.org/pkg/importer/twitter"
    33	)
    34	
    35	func init() {
    36		importer.RegisterTODO("facebook", importer.Properties{
    37			Title:       "Facebook",
    38			Description: "import Facebook content",
    39			TODOIssue:   1027,
    40		})
    41		importer.RegisterTODO("runkeeper", importer.Properties{
    42			Title:       "Runkeeper",
    43			Description: "import workout data from Runkeeper",
    44			TODOIssue:   1124,
    45		})
    46		importer.RegisterTODO("strava", importer.Properties{
    47			Title:       "Strava",
    48			Description: "import workout data from Strava",
    49			TODOIssue:   1125,
    50		})
    51		importer.RegisterTODO("instagram", importer.Properties{
    52			Title:       "Instagram",
    53			Description: "import photos from Instagram",
    54			TODOIssue:   1126,
    55		})
    56	}
Website layout inspired by memcached.
Content by the authors.