Skip to content
Snippets Groups Projects
Commit 6b61f6f4 authored by Damien MARCHAT's avatar Damien MARCHAT
Browse files

Setup of the bakery exercise

parent 4ddba7e7
No related branches found
No related tags found
No related merge requests found
package io.takima.temporalpractice.bakery;
public class KitchenApp {
public static void main(String[] args) {
}
}
package io.takima.temporalpractice.bakery.bake;
public interface BakeService {
void bake();
}
package io.takima.temporalpractice.bakery.batter;
public interface BatterService {
void prepareCookieBatter();
}
package io.takima.temporalpractice.bakery.cookie;
public class BestCookieWorkflow {
public void orderCookie() {
System.out.println("Cookie ordered... Miam");
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment