Done Category, Product Catalogue, Customer, Vendor, Purchase Invoice Module

This commit is contained in:
2026-08-28 11:30:18 +05:30
parent 0d13833679
commit 189f49ed07
118 changed files with 12624 additions and 4004 deletions

11
kifi-api/test_flux.java Normal file
View File

@@ -0,0 +1,11 @@
import reactor.core.publisher.Flux;
public class test_flux {
public static void main(String[] args) {
try {
Flux.fromIterable(null).subscribe();
System.out.println("Did not throw");
} catch(Exception e) {
System.out.println("Threw: " + e.getClass().getName());
}
}
}