20 lines
475 B
Python
20 lines
475 B
Python
from lemur.plugins.bases import SourcePlugin
|
|
|
|
|
|
class TestSourcePlugin(SourcePlugin):
|
|
title = "Test"
|
|
slug = "test-source"
|
|
description = "Enables testing"
|
|
|
|
author = "Kevin Glisson"
|
|
author_url = "https://github.com/netflix/lemur.git"
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(TestSourcePlugin, self).__init__(*args, **kwargs)
|
|
|
|
def get_certificates(self):
|
|
return
|
|
|
|
def update_endpoint(self, endpoint, certificate):
|
|
return
|