mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
10 lines
147 B
Python
10 lines
147 B
Python
|
"""Platforms"""
|
||
|
|
||
|
def platforms():
|
||
|
return [
|
||
|
"darwin_amd64",
|
||
|
"darwin_arm64",
|
||
|
"linux_amd64",
|
||
|
"linux_arm64",
|
||
|
]
|