mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
10 lines
176 B
Python
Executable File
10 lines
176 B
Python
Executable File
from helpers.defs import Distro, Spec
|
|
from helpers.enums import Arch
|
|
|
|
DISTROS = [
|
|
Distro(
|
|
os_name="macos",
|
|
specs=[Spec(archs=[Arch.MACOS_ARM64])],
|
|
),
|
|
]
|