Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hello Bro #1

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# TestingMD
1 change: 1 addition & 0 deletions TestOSS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public class TestModelDerivativeAPi
{
private static OssApi ossApi= null!;
private static string token;

Check warning on line 13 in TestOSS.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable field 'token' must contain a non-null value when exiting constructor. Consider declaring the field as nullable.

Check warning on line 13 in TestOSS.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable field 'token' must contain a non-null value when exiting constructor. Consider declaring the field as nullable.
string clientId = Environment.GetEnvironmentVariable("CLIENT_ID") ?? "ClientId not found";
string clientSecret = Environment.GetEnvironmentVariable("CLIENT_SECRET") ?? "ClientSecret not found";
private string bucketKey = "juzydaif25ciaxfzn0rawimiaztglxaq-basic-app";
Expand Down Expand Up @@ -46,6 +46,7 @@
Bucket bucket = await ossApi.GetBucketDetailsAsync(bucketKey, accessToken:token);
string bucketkey = bucket.BucketKey;
string bucketOwner = bucket.BucketOwner;
Console.WriteLine("This is no code Jai Shree Raam");
Assert.IsTrue(bucketOwner != null);
}

Expand Down
Loading