mirror of
https://github.com/quay/quay.git
synced 2026-01-27 18:42:52 +03:00
18 lines
327 B
Python
18 lines
327 B
Python
from collections import namedtuple
|
|
|
|
ManifestImageLayer = namedtuple(
|
|
"ManifestImageLayer",
|
|
[
|
|
"layer_id",
|
|
"compressed_size",
|
|
"is_remote",
|
|
"urls",
|
|
"command",
|
|
"blob_digest",
|
|
"created_datetime",
|
|
"author",
|
|
"comment",
|
|
"internal_layer",
|
|
],
|
|
)
|