mirror of
https://github.com/gomods/athens
synced 2026-02-10 18:08:12 +00:00
* basic structure * added olympus endpoint for fetching log * broken test * added backing buffalo job * slightly reshuffled, todo more shuffling * reshuffle more * breaking things up * more breaking up * hook to 101 * added redis to docker compose file * working! * a * build fix * first batch of changes towards new arch" * first batch of comments resolved * override for olympus endpoint * styling * osFs fix * fixed in memory storage * in-mem storage and test (#166)
11 lines
226 B
Go
11 lines
226 B
Go
package eventlog
|
|
|
|
// ErrUseNewOlympus is error raise on redirect from global dns entry to specific deployment
|
|
type ErrUseNewOlympus struct {
|
|
Endpoint string
|
|
}
|
|
|
|
func (e *ErrUseNewOlympus) Error() string {
|
|
return e.Endpoint
|
|
}
|