12 lines
329 B
Kotlin
12 lines
329 B
Kotlin
// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
|
|
|
package com.intellij.debugger.streams.kotlin
|
|
|
|
import java.io.File
|
|
|
|
/**
|
|
* @author Vitaliy.Bibaev
|
|
*/
|
|
object LibraryManager {
|
|
val LIBRARIES_DIRECTORY: String = File("lib").absolutePath
|
|
} |