diff options
author | Richard Jones <rjones@redhat.com> | 2009-05-09 17:19:24 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-05-10 13:52:49 +0100 |
commit | d43dac69483e8ec62e8356d93f761684ce2f5cc8 (patch) | |
tree | bb6294be55cc29b0b4f6cf8b9f7280d5c2225ec0 /haskell/Guestfs005Load.hs | |
parent | f0a5cd69f92f734b94e2361a939e4a1eb01dad9c (diff) | |
download | libguestfs-d43dac69483e8ec62e8356d93f761684ce2f5cc8.tar.gz libguestfs-d43dac69483e8ec62e8356d93f761684ce2f5cc8.tar.xz libguestfs-d43dac69483e8ec62e8356d93f761684ce2f5cc8.zip |
Partial Haskell bindings.
Diffstat (limited to 'haskell/Guestfs005Load.hs')
-rw-r--r-- | haskell/Guestfs005Load.hs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/haskell/Guestfs005Load.hs b/haskell/Guestfs005Load.hs new file mode 100644 index 00000000..c7cb1671 --- /dev/null +++ b/haskell/Guestfs005Load.hs @@ -0,0 +1,23 @@ +{- libguestfs Haskell bindings + Copyright (C) 2009 Red Hat Inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +-} + +module Guestfs005Load where +import qualified Guestfs + +main = do + Guestfs.create |