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