19 lines
394 B
Text
19 lines
394 B
Text
/-
|
|
Copyright (c) 2021 Sebastian Ullrich. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
Authors: Sebastian Ullrich
|
|
-/
|
|
import Lean.Data.Json
|
|
import Lean.Util.Path
|
|
|
|
/-! Communicating Lean search paths between processes -/
|
|
|
|
namespace Lean
|
|
|
|
structure LeanPaths where
|
|
oleanPath : SearchPath
|
|
srcPath : SearchPath
|
|
deriving ToJson, FromJson
|
|
|
|
end Lean
|