summaryrefslogtreecommitdiff
path: root/src/webid-oidc-hello
blob: b19481f7120ee031b280138933242ad7b3aeac48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/local/bin/guile \
--no-auto-compile -s
!#

(use-modules (webid-oidc hello-world))

(format (current-error-port) "Logging to hello.log and hello.err.\n")

(set-current-output-port (open-output-file "hello.log"))
(set-current-error-port (open-output-file "hello.err"))

(main)