init(main): register main and Genre

This commit is contained in:
2026-04-23 00:44:11 +03:30
parent d7712e36a3
commit 697091e45e
2 changed files with 12 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
package movie.apis;
public class Genre {
//TODO
}
+7
View File
@@ -0,0 +1,7 @@
package movie.apis;
public class Main {
public static void main(String[] args) {
// TODO: Receive your data from here
}
}