mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-22 10:01:45 +00:00
- Rewrote action script to eliminate stdin communication - Changed return type of audit.*.get() - An audit can return multiple lines of diagnostics - Move recommended endpoint URLs into function docstrings
15 lines
219 B
Python
15 lines
219 B
Python
"""The domain audit resource"""
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
from . import models
|
|
|
|
|
|
def get():
|
|
# Stub
|
|
return [models.Result('Email domains')]
|
|
|
|
|
|
def repair():
|
|
# Stub
|
|
raise RuntimeError()
|