Skip to content

Commit

Permalink
Updated lib to <librender_cdk>
Browse files Browse the repository at this point in the history
  • Loading branch information
irfanghat committed Jul 19, 2024
1 parent d3b0540 commit 2d34f5b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Binary file added librender_cdk/demo
Binary file not shown.
9 changes: 5 additions & 4 deletions librender_cdk/lib.cpp → librender_cdk/librender_cdk.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "environment_management.h"
#include "state_management.h"
#include <cstdlib>
#include <iostream>

/**
Expand All @@ -19,11 +20,11 @@
* EnvironmentManager and print it to the console.
*/

void testRetrieveApiKey() {
void retrieveApiKey() {
std::cout << EnvironmentManager::getApiKey() << std::endl;
}

void testRetrieveOwnerInfo() {
void retrieveOwnerInfo() {
std::vector<Owner> result =
Owner::retrieveAuthorizedUsers("[email protected]", "50");

Expand All @@ -44,6 +45,6 @@ void testRetrieveOwnerInfo() {
}

int main() {
// testRetrieveApiKey();
testRetrieveOwnerInfo();
// retrieveApiKey();
retrieveOwnerInfo();
}

0 comments on commit 2d34f5b

Please sign in to comment.