Skip to content

Commit ba95e45

Browse files
committed
wip
1 parent 4e5dda7 commit ba95e45

File tree

22 files changed

+97
-1518
lines changed

22 files changed

+97
-1518
lines changed

examples/iaas/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dependencies {
2+
implementation project (':services:iaas')
3+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package cloud.stackit.sdk.iaas.examples;
2+
3+
class IaaSExample {
4+
public static void main(String[] args) {}
5+
}

services/iaas/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ ext {
44
}
55

66
dependencies {
7+
implementation project (':core')
78
implementation "com.google.code.findbugs:jsr305:3.0.2"
89
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
910
implementation 'com.squareup.okhttp3:logging-interceptor:4.12.0'

services/iaas/src/main/java/cloud/stackit/sdk/iaas/ApiCallback.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
package cloud.stackit.sdk.iaas;
1414

15+
import cloud.stackit.sdk.core.exception.ApiException;
1516
import java.util.List;
1617
import java.util.Map;
1718

0 commit comments

Comments
 (0)