mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 17:47:53 +07:00
IJ-CR-102194 GitOrigin-RevId: 03a6ca4157cd5a9cde3e7f41bf84d67da259c858
9 lines
172 B
Java
9 lines
172 B
Java
import com.intellij.openapi.components.Service;
|
|
import kotlinx.coroutines.CoroutineScope;
|
|
|
|
@Service(Service.Level.APP)
|
|
final class MyService {
|
|
public MyService() {
|
|
}
|
|
}
|