This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#[allow(dead_code)] | |
enum Eden { | |
Coordinator, | |
Doctor, | |
Engineer, | |
Cybernetic { | |
name: &'static str | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import logging | |
from functools import partial | |
from itertools import chain, starmap | |
from boto3 import Session | |
from botocore.exceptions import ClientError | |
ACCESS_KEY = os.environ.get("ACCESS_KEY", "") | |
SECRET_KEY = os.environ.get("SECRET_KEY", "") |