-
Notifications
You must be signed in to change notification settings - Fork 732
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
256 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package api implements API endpoints for Miniflux application. | ||
*/ | ||
package api |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package cli implements command line arguments for Miniflux application. | ||
*/ | ||
package cli |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package config handles configuration values for Miniflux application. | ||
*/ | ||
package config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package crypto implements helpers related to cryptography. | ||
*/ | ||
package crypto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package daemon handles the main application process. | ||
*/ | ||
package daemon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package main implements a feed reader application. | ||
*/ | ||
package main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package duration implements helpers to calculate time duration. | ||
*/ | ||
package duration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package errors handles localized errors. | ||
*/ | ||
package errors |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package fever implements Fever API endpoints. | ||
*/ | ||
package fever |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package filter implements a content filter to rewrite image links. | ||
*/ | ||
package filter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package http implements a set of utilities related to the HTTP protocol. | ||
*/ | ||
package http |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package integration implements API clients for third-party services. | ||
*/ | ||
package integration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package locale handles the internationalization of the application. | ||
*/ | ||
package locale |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package logger handles application log messages with different levels. | ||
*/ | ||
package logger |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package model contains all data structures used by the application. | ||
*/ | ||
package model |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package oauth2 abstracts different OAuth2 providers. | ||
*/ | ||
package oauth2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package reader implements everything related to feed parsing. | ||
*/ | ||
package reader |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package scheduler implements the application internal scheduler. | ||
*/ | ||
package scheduler |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package sql contains all SQL queries or database schema instructions. | ||
*/ | ||
package sql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package storage implements a set of functions to interact with the database. | ||
*/ | ||
package storage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package template handles template parsing and execution. | ||
*/ | ||
package template |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package timer implements utility functions to measure the execution time of a block of code. | ||
*/ | ||
package timer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package ui implements handlers to render to user interface. | ||
*/ | ||
package ui |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package url implements a set of utility functions to parse URL. | ||
*/ | ||
package url |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2018 Frédéric Guillot. All rights reserved. | ||
// Use of this source code is governed by the MIT license | ||
// that can be found in the LICENSE file. | ||
|
||
/* | ||
Package version contains application and build information. | ||
*/ | ||
package version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters