journal/2021-06-06--13-43-12Z--service_oriented_programming.org

This commit is contained in:
Yann Esposito (Yogsototh) 2021-06-06 14:15:09 +02:00
parent a216a86b9f
commit e627217f47
Signed by untrusted user who does not match committer: yogsototh
GPG key ID: 7B19A4C650D59646

View file

@ -34,6 +34,12 @@ Every service should have the following structure:
A service should be considered as a function returning a record of functions.
#+begin_src
foo-service-methods
foo-do-a
foo-do-b
foo-do-c
def foo-service
create-service( config-service, bar-service, baz-service )
create-service( config-service, bar-service, baz-service)
#+end_src