
This is not yet working, it's just a direct copy of the Manager of Flamenco 2, with Logrus replaced by Zerolog. The API has been documented in flamenco-manager.yaml as a starting point for the integration.
12 lines
289 B
Go
12 lines
289 B
Go
package jwtauth
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
/* This is just a dummy package. We still have to properly design authentication
|
|
* for Flamenco 3, but the ported code from Flamenco 2's Shaman implementation
|
|
* uses JWT Authentication.
|
|
*/
|
|
|
|
type Authenticator interface {
|
|
}
|