mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
IDEA-236032 GitOrigin-RevId: 0ec3219b2893b1e597f99bcbb2c632a9a28174a7
8 lines
173 B
Java
8 lines
173 B
Java
import com.intellij.openapi.components.Service;
|
|
import com.intellij.openapi.project.Project;
|
|
|
|
@Service(Service.Level.APP)
|
|
final class MyService {
|
|
private MyService() {}
|
|
}
|