1
1
mirror of https://github.com/github/semantic.git synced 2024-12-22 14:21:31 +03:00

Stub in a Graph newtype.

This commit is contained in:
Rob Rix 2018-05-11 12:07:05 -04:00
parent 53fab62a0e
commit ca6a4b1c56

View File

@ -1 +1,7 @@
module Data.Graph where
module Data.Graph
( Graph(..)
) where
import qualified Algebra.Graph as G
newtype Graph vertex = Graph (G.Graph vertex)