mirror of
https://github.com/correl/openapi-core.git
synced 2025-01-06 03:00:11 +00:00
6 lines
158 B
Python
6 lines
158 B
Python
from openapi_core.spec.servers import get_server_url
|
|
|
|
|
|
def get_spec_url(spec, index=0):
|
|
servers = spec / 'servers'
|
|
return get_server_url(servers / 0)
|