mirror of
https://github.com/certbot/certbot.git
synced 2026-01-21 19:01:07 +03:00
10 lines
232 B
Python
10 lines
232 B
Python
"""ACME utilities."""
|
|
import json
|
|
import pkg_resources
|
|
|
|
|
|
def load_schema(name):
|
|
"""Load JSON schema from distribution."""
|
|
return json.load(open(pkg_resources.resource_filename(
|
|
__name__, "schemata/%s.json" % name)))
|