10 lines
309 B
Java
10 lines
309 B
Java
/**
|
|
* Main module for auto-subtitle
|
|
*/
|
|
module com.github.gtache.autosubtitle.run {
|
|
requires com.github.gtache.autosubtitle.ffmpeg;
|
|
requires com.github.gtache.autosubtitle.gui.fx;
|
|
requires com.github.gtache.autosubtitle.whisper;
|
|
|
|
opens com.github.gtache.autosubtitle.run to javafx.graphics;
|
|
} |