/committed-to-art

Primary LanguageC++MIT LicenseMIT

commited-to-art

Create art by committing to your repository.

src/secrets.h

#ifndef _SECRETS_H
#define _SECRETS_H

struct
{
    const char *ssid = "ssid";
    const char *password = "password";
} WiFiConfig;

struct
{
    const char *oAuthToken = "oAuthToken";
    const char *repository = "organisation/repository";
    const char *branch = "branch";
} GitHub;

#endif