## fund()


Record funding for a project.


Usage


``` python
fund(
    project,
    amount,
)
```


## Parameters


`project: str`  
The name of the project to fund.

`amount: float`  
The funding amount in dollars.


## Returns


`dict`  
A dictionary with funding details.


## Examples

``` python
>>> fund("research", 50000.0)
```

{'project': 'research', 'amount': 50000.0}
